/* =========================================
   TESTIMONIOS - ONCOSAVI
========================================= */

.testimonials-hero {
    position: relative;

    padding: 130px 0 80px;

    background:
        linear-gradient(
            135deg,
            rgba(7, 53, 95, 0.97),
            rgba(10, 77, 140, 0.92)
        );

    color: #ffffff;
}


.testimonials-hero h1 {
    margin-bottom: 18px;

    font-size: clamp(2.3rem, 5vw, 4rem);

    font-weight: 700;
}


.testimonials-hero p {
    max-width: 760px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.85);

    font-size: 17px;

    line-height: 1.8;
}


.testimonials-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    padding: 8px 15px;

    border:
        1px solid rgba(
            255,
            255,
            255,
            0.2
        );

    border-radius: 30px;

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );

    font-size: 14px;

    font-weight: 600;
}


/* =========================================
   PÁGINA
========================================= */

.testimonials-page {
    padding: 80px 0;

    background: #f5f8fc;
}


.testimonials-intro {
    max-width: 800px;

    margin: 0 auto 50px;

    text-align: center;
}


.testimonials-intro h2 {
    margin-bottom: 15px;

    color: #07355f;

    font-size: 36px;

    font-weight: 700;
}


.testimonials-intro p {
    color: #66788a;

    line-height: 1.8;
}


/* =========================================
   TARJETA
========================================= */

.testimonial-card {
    height: 100%;

    overflow: hidden;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 15px 40px
        rgba(
            21,
            50,
            80,
            0.08
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.testimonial-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 50px
        rgba(
            21,
            50,
            80,
            0.15
        );
}


/* =========================================
   VIDEO
========================================= */

.testimonial-video {
    overflow: hidden;

    background: #000000;
}


.testimonial-video iframe {
    border: 0;
}


/* =========================================
   CONTENIDO
========================================= */

.testimonial-content {
    padding: 28px;
}


.testimonial-category {
    display: inline-block;

    margin-bottom: 10px;

    color: #fc2222;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.testimonial-content h3 {
    margin-bottom: 12px;

    color: #07355f;

    font-size: 22px;

    font-weight: 700;
}


.testimonial-content p {
    margin-bottom: 22px;

    color: #66788a;

    line-height: 1.7;
}


/* =========================================
   PACIENTE
========================================= */

.testimonial-patient {
    display: flex;

    align-items: center;

    gap: 12px;
}


.patient-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        rgba(
            10,
            77,
            140,
            0.1
        );

    color: #0A4D8C;
}


.testimonial-patient strong {
    display: block;

    color: #07355f;

    font-size: 14px;
}


.testimonial-patient span {
    display: block;

    color: #8493a2;

    font-size: 12px;
}


/* =========================================
   AVISO
========================================= */

.testimonial-notice {
    display: flex;

    gap: 14px;

    max-width: 900px;

    margin: 50px auto 0;

    padding: 20px 22px;

    border:
        1px solid #d7e5f2;

    border-radius: 14px;

    background: #ffffff;

    color: #66788a;
}


.testimonial-notice i {
    margin-top: 4px;

    color: #0A4D8C;
}


.testimonial-notice p {
    margin: 0;

    line-height: 1.7;
}


/* =========================================
   CTA
========================================= */

.testimonials-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    margin-top: 55px;

    padding: 38px;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 15px 40px
        rgba(
            21,
            50,
            80,
            0.08
        );
}


.testimonials-cta h2 {
    margin-bottom: 8px;

    color: #07355f;

    font-weight: 700;
}


.testimonials-cta p {
    max-width: 600px;

    margin: 0;

    color: #66788a;
}


.testimonials-cta-actions {
    display: flex;

    gap: 12px;

    flex-shrink: 0;
}


.btn-testimonial-primary,
.btn-testimonial-outline {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 18px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;
}


.btn-testimonial-primary {
    background: #fc2222;

    border: 1px solid #fc2222;

    color: #ffffff;
}


.btn-testimonial-primary:hover {
    background: #d91c1c;

    border-color: #d91c1c;

    color: #ffffff;
}


.btn-testimonial-outline {
    background: transparent;

    border: 1px solid #0A4D8C;

    color: #0A4D8C;
}


.btn-testimonial-outline:hover {
    background: #0A4D8C;

    color: #ffffff;
}

.testimonial-video-vertical {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.testimonial-video-vertical iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .testimonials-hero {
        padding:
            110px
            0
            65px;
    }


    .testimonials-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 576px) {

    .testimonials-page {
        padding:
            55px
            0;
    }


    .testimonials-intro h2 {
        font-size: 30px;
    }


    .testimonial-content {
        padding: 22px;
    }


    .testimonials-cta {
        padding: 26px 22px;
    }


    .testimonials-cta-actions {
        width: 100%;

        flex-direction: column;
    }


    .btn-testimonial-primary,
    .btn-testimonial-outline {
        width: 100%;
    }

}