.fd-testimonios,
.fd-testimonios * { box-sizing: border-box; }

.fd-testimonios {
    --fd-teal-dark: #00494A;
    --fd-turquoise: #007F7F;
    --fd-accent: #FDBA20;
    --fd-text: #182535;
    --fd-mint: #E2F0EF;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #FBFAF8;
    color: var(--fd-text);
    font-family: "Poppins", "Montserrat", Arial, sans-serif;
    isolation: isolate;
    padding: 150px 24px 75px;
}

.fd-testimonios:focus { outline: none; }
.fd-testimonios:focus-visible { outline: 2px solid rgba(0,127,127,.5); outline-offset: -2px; }

.fd-testimonios__inner {
    width: 100%;
    max-width: 1370px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.fd-testimonios__main {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    column-gap: 54px;
    align-items: start;
}

.fd-testimonios__intro {
    width: 350px;
    padding-top: 10px;
}

.fd-testimonios__eyebrow {
    color: var(--fd-turquoise);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.2;
}

.fd-testimonios__accent-line,
.fd-testimonios__closing-line {
    display: block;
    width: 52px;
    height: 6px;
    background: var(--fd-accent);
    border-radius: 30px;
}

.fd-testimonios__accent-line { margin-top: 16px; }

.fd-testimonios__title {
    margin: 38px 0 0;
    color: var(--fd-teal-dark);
    font-size: 56px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.025em;
}

.fd-testimonios__intro-heart {
    width: 46px;
    height: 46px;
    color: var(--fd-turquoise);
    margin-top: 27px;
}
.fd-testimonios__intro-heart svg,
.fd-testimonios__small-heart svg,
.fd-testimonios__badge svg { width: 100%; height: 100%; display: block; }

.fd-testimonios__description {
    margin-top: 23px;
    max-width: 335px;
    font-size: 18px;
    line-height: 1.62;
    color: #303743;
}

.fd-testimonios__showcase { min-width: 0; }

.fd-testimonios__cards {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    min-height: 590px;
}

.fd-testimonios__card {
    position: relative;
    flex: 0 0 auto;
    width: 305px;
    min-height: 535px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 21px;
    padding: 40px 30px 28px;
    box-shadow: 0 10px 35px rgba(0,50,55,.07);
    display: flex;
    flex-direction: column;
    transition: width .32s ease, min-height .32s ease, transform .32s ease, border-color .32s ease, opacity .25s ease;
}

.fd-testimonios__card[hidden] { display: none !important; }

.fd-testimonios__card.is-active {
    width: 345px;
    min-height: 570px;
    border-color: #B7DBD8;
    transform: translateY(-12px);
    box-shadow: 0 13px 38px rgba(0,66,66,.09);
}

.fd-testimonios__quote {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #EAF4F3;
    color: #006E6F;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fd-testimonios__quote span {
    display: block;
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: .9;
    transform: translateY(9px);
    font-weight: 700;
}

.fd-testimonios__badge {
    display: none;
    position: absolute;
    top: 18px;
    right: 17px;
    width: 46px;
    height: 46px;
    padding: 10px;
    border-radius: 50%;
    background: var(--fd-accent);
    color: #fff;
    box-shadow: 0 5px 14px rgba(253,186,32,.25);
}
.fd-testimonios__card.is-active .fd-testimonios__badge { display: block; }

.fd-testimonios__text {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.62;
    font-weight: 400;
    color: var(--fd-text);
}
.fd-testimonios__card.is-active .fd-testimonios__text { font-size: 18.5px; }

.fd-testimonios__divider {
    width: 100%;
    height: 1px;
    background: #E7E7E7;
    margin-top: auto;
    margin-bottom: 24px;
}

.fd-testimonios__card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.fd-testimonios__author {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.fd-testimonios__avatar {
    position: relative;
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}
.fd-testimonios__avatar--placeholder {
    display: block;
    background: #E6F3F1;
}
.fd-testimonios__avatar-head {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #86CFCA;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
}
.fd-testimonios__avatar-body {
    position: absolute;
    width: 50px;
    height: 29px;
    border-radius: 50% 50% 38% 38%;
    background: #86CFCA;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}
.fd-testimonios__author-copy { min-width: 0; }
.fd-testimonios__author-name {
    color: var(--fd-teal-dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}
.fd-testimonios__author-meta {
    color: var(--fd-turquoise);
    font-size: 16px;
    line-height: 1.35;
    margin-top: 4px;
    white-space: nowrap;
}
.fd-testimonios__small-heart {
    width: 28px;
    height: 28px;
    color: var(--fd-turquoise);
    flex: 0 0 auto;
    margin-bottom: 1px;
}

.fd-testimonios__navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}
.fd-testimonios__navigation--desktop { margin-top: 46px; }
.fd-testimonios__arrows { display: flex; gap: 20px; }
.fd-testimonios__arrow {
    width: 70px;
    height: 70px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    color: var(--fd-turquoise);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: transform .2s ease, box-shadow .2s ease;
    font: inherit;
}
.fd-testimonios__arrow:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.fd-testimonios__arrow:focus-visible,
.fd-testimonios__dot:focus-visible { outline: 2px solid var(--fd-turquoise); outline-offset: 3px; }
.fd-testimonios__arrow span { font-size: 36px; line-height: 1; transform: translateY(-1px); }
.fd-testimonios__dots { display: flex; gap: 18px; align-items: center; }
.fd-testimonios__dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #CBE5E2;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.fd-testimonios__dot.is-active { background: var(--fd-turquoise); transform: scale(1.06); }

.fd-testimonios__closing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    margin-top: 32px;
    padding-left: 360px;
}
.fd-testimonios__closing-icon {
    width: 70px;
    color: #006E6F;
    flex: 0 0 auto;
}
.fd-testimonios__closing-icon svg { width: 100%; height: auto; display: block; }
.fd-testimonios__closing-text {
    max-width: 500px;
    font-size: 18px;
    line-height: 1.55;
    color: #303743;
}
.fd-testimonios__closing-text strong {
    color: var(--fd-turquoise);
    font-weight: 700;
}
.fd-testimonios__closing-line { margin-top: 13px; width: 48px; height: 5px; }

.fd-testimonios__mobile-stage { display: none; }

/* Decoraciones */
.fd-testimonios__decorations {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.fd-decor { position: absolute; display: block; }
.fd-decor--dots-top {
    top: 48px; left: 34px; width: 72px; height: 72px;
    background-image: radial-gradient(circle, #91D4D1 2px, transparent 2.3px);
    background-size: 24px 24px;
    opacity: .8;
}
.fd-decor--blob-left {
    left: -95px; top: 148px; width: 172px; height: 565px;
    background: var(--fd-mint);
    border-radius: 46% 58% 52% 42% / 35% 55% 48% 60%;
    opacity: .93;
}
.fd-decor--blob-top-right {
    right: -22px; top: -92px; width: 320px; height: 315px;
    background: var(--fd-turquoise);
    border-radius: 0 0 0 72%;
}
.fd-decor--curve-top-right {
    right: -6px; top: 64px; width: 190px; height: 205px;
    border-left: 2px solid rgba(0,127,127,.25);
    border-bottom: 2px solid rgba(0,127,127,.25);
    border-radius: 0 0 0 100%;
    transform: rotate(-12deg);
}
.fd-decor--circle-top-right {
    right: 23px; top: 54px; width: 55px; height: 55px;
    border: 1.5px solid #003C3E; border-radius: 50%;
}
.fd-decor--blob-bottom-right {
    right: -78px; bottom: -84px; width: 390px; height: 345px;
    background: var(--fd-mint);
    border-radius: 70% 0 0 0;
}
.fd-decor--dots-bottom {
    right: 34px; bottom: 55px; width: 90px; height: 90px;
    background-image: radial-gradient(circle, #91D4D1 2px, transparent 2.3px);
    background-size: 23px 23px;
    opacity: .8;
}
.fd-decor--plant {
    left: -3px; bottom: 178px; width: 96px; color: var(--fd-turquoise);
}
.fd-decor--plant svg { width: 100%; height: auto; display: block; }
.fd-decor--yellow-line {
    left: -28px; bottom: -42px; width: 235px; height: 328px;
    border: 1.5px solid rgba(253,186,32,.95);
    border-left-color: transparent;
    border-top-color: transparent;
    border-radius: 0 0 63% 0;
    transform: rotate(9deg);
}

@media (max-width: 1300px) {
    .fd-testimonios { padding-left: 36px; padding-right: 36px; }
    .fd-testimonios__main { column-gap: 34px; }
    .fd-testimonios__intro { width: 300px; }
    .fd-testimonios__title { font-size: 48px; }
    .fd-testimonios__cards { gap: 18px; }
    .fd-testimonios__card { width: 270px; padding-left: 24px; padding-right: 24px; }
    .fd-testimonios__card.is-active { width: 305px; }
    .fd-testimonios__closing { padding-left: 310px; }
}

@media (max-width: 1024px) {
    .fd-testimonios { padding: 105px 24px 70px; }
    .fd-testimonios__main { grid-template-columns: 1fr; }
    .fd-testimonios__intro { width: 100%; max-width: 720px; margin: 0 auto; text-align: center; }
    .fd-testimonios__eyebrow { text-align: center; }
    .fd-testimonios__accent-line { margin-left: auto; margin-right: auto; }
    .fd-testimonios__title { font-size: 50px; }
    .fd-testimonios__intro-heart { margin-left: auto; margin-right: auto; }
    .fd-testimonios__description { max-width: 660px; margin-left: auto; margin-right: auto; }
    .fd-testimonios__navigation--desktop { justify-content: center; }
    .fd-testimonios__cards { justify-content: center; margin-top: 48px; }
    .fd-testimonios__card { width: 280px; }
    .fd-testimonios__card.is-active { width: 315px; }
    .fd-testimonios__closing { padding-left: 0; margin-top: 24px; }
}

@media (max-width: 767px) {
    .fd-testimonios {
        padding: 82px 20px 72px;
        min-height: 1000px;
    }
    .fd-testimonios__inner { max-width: 620px; }
    .fd-testimonios__main { display: block; }
    .fd-testimonios__intro { width: 100% !important; max-width: 600px; padding-top: 0; }
    .fd-testimonios__eyebrow { font-size: 18px; }
    .fd-testimonios__accent-line { width: 56px; height: 6px; margin-top: 17px; }
    .fd-testimonios__title {
        margin-top: 42px;
        font-size: clamp(38px, 10.7vw, 52px);
        line-height: 1.02;
        letter-spacing: -.025em;
    }
    .fd-testimonios__intro-heart { width: 48px; height: 48px; margin-top: 25px; }
    .fd-testimonios__description {
        margin-top: 19px;
        max-width: 560px;
        font-size: clamp(16px, 4vw, 19px);
        line-height: 1.6;
    }
    .fd-testimonios__navigation--desktop,
    .fd-testimonios__cards { display: none !important; }
    .fd-testimonios__mobile-stage { display: block; margin-top: 28px; }
    .fd-testimonios__mobile-active { position: relative; width: 100%; }
    .fd-testimonios__card--mobile {
        display: none;
        width: 100% !important;
        min-height: 430px !important;
        padding: 28px 28px 24px;
        border: 2px solid #B7DBD8;
        transform: none !important;
    }
    .fd-testimonios__card--mobile.is-active { display: flex; }
    .fd-testimonios__card--mobile .fd-testimonios__quote { width: 84px; height: 84px; }
    .fd-testimonios__card--mobile .fd-testimonios__text {
        margin-top: 25px;
        font-size: clamp(16px, 4.05vw, 19px);
        line-height: 1.72;
    }
    .fd-testimonios__card--mobile .fd-testimonios__divider { margin-top: 32px; margin-bottom: 24px; }
    .fd-testimonios__card--mobile .fd-testimonios__badge { display: block; top: 15px; right: 15px; }
    .fd-testimonios__card--mobile .fd-testimonios__avatar { width: 64px; height: 64px; }
    .fd-testimonios__card--mobile .fd-testimonios__author-name { font-size: 18px; }
    .fd-testimonios__card--mobile .fd-testimonios__author-meta { font-size: 16px; }

    .fd-testimonios__navigation--mobile {
        justify-content: center;
        gap: 31px;
        margin-top: 21px;
    }
    .fd-testimonios__navigation--mobile .fd-testimonios__arrows { gap: 18px; }
    .fd-testimonios__navigation--mobile .fd-testimonios__arrow { width: 68px; height: 68px; }
    .fd-testimonios__navigation--mobile .fd-testimonios__dots { gap: 17px; }

    .fd-testimonios__compact-list {
        display: flex;
        flex-direction: column;
        gap: 17px;
        margin-top: 22px;
    }
    .fd-testimonios__compact {
        position: relative;
        display: grid;
        grid-template-columns: 64px minmax(0,1fr) 34px;
        grid-template-rows: auto 1px auto;
        column-gap: 18px;
        row-gap: 15px;
        width: 100%;
        padding: 22px 25px 20px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,50,55,.07);
    }
    .fd-testimonios__compact.is-current { display: none; }
    .fd-testimonios__compact-quote { grid-column: 1; grid-row: 1; width: 64px !important; height: 64px !important; }
    .fd-testimonios__compact-quote span { font-size: 50px; transform: translateY(7px); }
    .fd-testimonios__compact-text {
        grid-column: 2 / 4;
        grid-row: 1;
        margin: 0;
        font-size: clamp(14px, 3.65vw, 17px);
        line-height: 1.7;
    }
    .fd-testimonios__compact-divider {
        grid-column: 2 / 4;
        grid-row: 2;
        margin: 0;
        align-self: center;
    }
    .fd-testimonios__compact-author { grid-column: 1 / 3; grid-row: 3; }
    .fd-testimonios__compact-author .fd-testimonios__author { gap: 18px; }
    .fd-testimonios__compact-author .fd-testimonios__avatar { width: 64px; height: 64px; }
    .fd-testimonios__compact-author .fd-testimonios__author-name { font-size: 17px; }
    .fd-testimonios__compact-author .fd-testimonios__author-meta { font-size: 15px; }
    .fd-testimonios__compact-heart { grid-column: 3; grid-row: 3; align-self: center; justify-self: end; margin: 0; width: 29px; height: 29px; }

    .fd-testimonios__closing {
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding-left: 0;
        margin-top: 46px;
    }
    .fd-testimonios__closing-icon { width: 68px; }
    .fd-testimonios__closing-text {
        max-width: 360px;
        font-size: clamp(15px, 3.9vw, 18px);
        line-height: 1.55;
    }
    .fd-testimonios__closing-line { margin-top: 13px; }

    .fd-decor--dots-top { display: none; }
    .fd-decor--blob-left { left: -95px; top: 110px; width: 145px; height: 430px; }
    .fd-decor--blob-top-right { right: -75px; top: -72px; width: 255px; height: 250px; }
    .fd-decor--curve-top-right { right: -30px; top: 55px; width: 150px; height: 165px; }
    .fd-decor--circle-top-right { right: 14px; top: 58px; width: 44px; height: 44px; }
    .fd-decor--blob-bottom-right { right: -105px; bottom: -98px; width: 320px; height: 300px; }
    .fd-decor--dots-bottom { right: 18px; bottom: 42px; width: 82px; height: 82px; background-size: 21px 21px; }
    .fd-decor--plant { left: -4px; bottom: 98px; width: 92px; }
    .fd-decor--yellow-line { left: -45px; bottom: -35px; width: 185px; height: 285px; }
}

@media (max-width: 480px) {
    .fd-testimonios { padding-left: 16px; padding-right: 16px; }
    .fd-testimonios__card--mobile { padding: 25px 22px 22px; }
    .fd-testimonios__card--mobile .fd-testimonios__author { gap: 13px; }
    .fd-testimonios__card--mobile .fd-testimonios__author-name,
    .fd-testimonios__card--mobile .fd-testimonios__author-meta { white-space: normal; }
    .fd-testimonios__compact { grid-template-columns: 56px minmax(0,1fr) 30px; column-gap: 14px; padding: 19px 18px; }
    .fd-testimonios__compact-quote { width: 56px !important; height: 56px !important; }
    .fd-testimonios__compact-author .fd-testimonios__avatar { width: 56px; height: 56px; }
    .fd-testimonios__closing { gap: 14px; align-items: flex-start; }
    .fd-testimonios__closing-icon { width: 58px; margin-top: 2px; }
    .fd-testimonios__closing-text { max-width: 255px; }
}

@media (prefers-reduced-motion: reduce) {
    .fd-testimonios__card,
    .fd-testimonios__arrow,
    .fd-testimonios__dot { transition: none !important; }
}
