*,
*::before,
*::after {
    box-sizing: border-box;
}

.bg-clientes {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 18, 72, 0.393)), url(../img/banner07.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-clientes .clientes {
    position: relative;
}

.bg-clientes .breadcrumb-item a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.bg-clientes .breadcrumb-item a:hover {
    color: #cccccc !important;
    /* Un gris claro para que se note que es un enlace */
}


.client-logo {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo img {
    max-height: 175px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-6px) scale(1.02);
}

.cta-section {
    position: relative;
}

.cta-image-wrapper img {
    width: 85%;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-22px);
    }

    75% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.cta-image-wrapper img {
    animation: floatImage 5.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    will-change: transform;
}

.cta-badge {
    display: inline-block;
    background: rgba(0, 84, 160, 0.1);
    color: #0054a0;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.cta-btn {
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 84, 160, 0.35);
    transition: all 0.3s ease;
}

.cta-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 84, 160, 0.55);
}

.cta-btn:hover::after {
    opacity: 1;
}

@media (max-width: 991px) {

    .row.g-4 {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .row.g-4>div {
        padding-left: 12px;
        padding-right: 12px;
    }

    .client-logo {
        height: 150px;
        padding: 22px;
    }

    .client-logo img {
        max-height: 125px;
        width: auto;
    }
}

@media (max-width:768px) {

    body {
        overflow-x: hidden;
    }

    .row.g-4 {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .row.g-4>div {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .client-logo {
        height: 160px;
        padding: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .client-logo img {
        max-height: 140px;
        width: auto;
    }
}

@media (max-width:480px) {

    .client-logo {
        height: 150px;
        padding: 24px;
    }

    .client-logo img {
        max-height: 130px;
    }
}