/* ========================================
   HOME - HERO COMPLETO
   Carousel, conteúdo, controles e responsivo
   ======================================== */

.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 920px;
    overflow: hidden;

    background: var(--green-950, #042f2a);
    color: #ffffff;
}

.hero-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 920px;
    padding: 225px 0 150px;

    background-color: var(--green-950, #042f2a);
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 1.1s ease,
        visibility 1.1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ========================================
   HERO - IMAGENS DESKTOP
   ======================================== */

.hero-slide-doctor {
    background-image: url("assets/img/hero-dra-ligia.webp");
    background-position: 78% 110px;
}

.hero-slide-back-pain {
    background-image: url("assets/img/hero-dor-nas-costas.webp");
    background-position: 76% 80px;
}

.hero-slide-sciatica {
    background-image: url("assets/img/hero-dor-ciatica.webp");
    background-position: 76% 80px;
}


/* ========================================
   HERO - CAMADA DE LEITURA
   ======================================== */

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(4, 47, 42, 0.98) 0%,
        rgba(4, 47, 42, 0.94) 25%,
        rgba(4, 47, 42, 0.79) 44%,
        rgba(4, 47, 42, 0.38) 67%,
        rgba(4, 47, 42, 0.08) 100%
    );
}


/* ========================================
   HERO - ELEMENTO DECORATIVO
   ======================================== */

.hero-slide::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -210px;
    z-index: 1;

    width: 620px;
    height: 620px;

    border: 1px solid rgba(200, 155, 109, 0.28);
    border-radius: 50%;

    pointer-events: none;
}


/* ========================================
   HERO - CONTAINER
   ======================================== */

.hero-slide .container {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 40px), var(--container, 1200px));

    margin-left: auto;
    margin-right: auto;
}


/* ========================================
   HERO - CONTEÚDO
   ======================================== */

.hero-copy {
    width: 100%;
    max-width: 720px;
}

.hero-copy .eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    color: var(--champagne, #c89b6d);
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy .hero-title {
    max-width: 700px;
    margin: 0 0 24px;

    color: #ffffff;
    font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
    font-size: clamp(3.4rem, 5.2vw, 5.75rem);
    line-height: 0.96;
    font-weight: 600;
    letter-spacing: -0.045em;

    text-wrap: balance;
}

.hero-copy p {
    max-width: 650px;
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
}


/* ========================================
   HERO - BOTÕES
   ======================================== */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;

    margin-top: 32px;
}


/* ========================================
   HERO - INFORMAÇÕES DE APOIO
   ======================================== */

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;

    margin-top: 30px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-meta span {
    position: relative;
}

.hero-meta span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -11px;

    width: 3px;
    height: 3px;

    border-radius: 50%;
    background: var(--champagne, #c89b6d);

    transform: translateY(-50%);
}


/* ========================================
   HERO - CONTROLES DO CARROSSEL
   ======================================== */

.hero-controls {
    position: absolute;
    z-index: 5;
    bottom: 72px;
    left: 50%;

    display: flex;
    align-items: center;
    gap: 12px;

    width: min(calc(100% - 40px), var(--container, 1200px));

    transform: translateX(-50%);
}

.hero-dot {
    position: relative;

    width: 42px;
    height: 4px;
    padding: 0;

    overflow: hidden;

    border: 0;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.28);

    cursor: pointer;
}

.hero-dot span {
    display: block;

    width: 0;
    height: 100%;

    border-radius: inherit;
    background: var(--champagne, #c89b6d);
}

.hero-dot.is-active span {
    animation: heroDotFill 8s linear forwards;
}

@keyframes heroDotFill {
    to {
        width: 100%;
    }
}


/* ========================================
   HERO - TELAS INTERMEDIÁRIAS
   ======================================== */

@media (max-width: 1180px) {
    .hero-carousel,
    .hero-slide {
        min-height: 880px;
    }

    .hero-slide {
        padding: 215px 0 140px;
    }

    .hero-slide-doctor {
        background-position: 76% 120px;
    }

    .hero-slide-back-pain {
        background-position: 74% 95px;
    }

    .hero-slide-sciatica {
        background-position: 74% 95px;
    }

    .hero-copy {
        max-width: 660px;
    }

    .hero-copy h1,
    .hero-copy .hero-title {
        max-width: 650px;
        font-size: clamp(3.2rem, 5.6vw, 5rem);
    }
}


/* ========================================
   HERO - TABLET
   ======================================== */

@media (max-width: 900px) {
    .hero-carousel,
    .hero-slide {
        min-height: 860px;
    }

    .hero-slide {
        padding: 205px 0 130px;
    }

    .hero-slide-doctor {
        background-position: 74% 130px;
    }

    .hero-slide-back-pain {
        background-position: 72% 105px;
    }

    .hero-slide-sciatica {
        background-position: 72% 105px;
    }

    .hero-slide::before {
        background: linear-gradient(
            90deg,
            rgba(4, 47, 42, 0.97) 0%,
            rgba(4, 47, 42, 0.92) 42%,
            rgba(4, 47, 42, 0.50) 74%,
            rgba(4, 47, 42, 0.18) 100%
        );
    }

    .hero-slide .container,
    .hero-controls {
        width: calc(100% - 40px);
    }

    .hero-copy {
        max-width: 610px;
    }

    .hero-copy h1,
    .hero-copy .hero-title {
        max-width: 600px;
        font-size: clamp(3rem, 7vw, 4.6rem);
    }

    .hero-copy p {
        max-width: 580px;
    }
}


/* ========================================
   HERO - MOBILE
   ======================================== */

@media (max-width: 760px) {
    .hero-carousel,
    .hero-slide {
        min-height: 820px;
    }

    .hero-slide {
        align-items: flex-end;

        padding: 150px 0 96px;

        background-size: cover;
        background-position: center top;
    }

    .hero-slide-doctor {
        background-image: url("assets/img/hero-dra-ligia-mobile.webp");
        background-position: center top;
    }

    .hero-slide-back-pain {
        background-image: url("assets/img/hero-dor-nas-costas-mobile.webp");
        background-position: center top;
    }

    .hero-slide-sciatica {
        background-image: url("assets/img/hero-dor-ciatica-mobile.webp");
        background-position: center top;
    }

    .hero-slide::before {
        display: block !important;
        content: "" !important;

        background:
            linear-gradient(
                180deg,
                rgba(4, 47, 42, 0.04) 0%,
                rgba(4, 47, 42, 0.12) 22%,
                rgba(4, 47, 42, 0.50) 48%,
                rgba(4, 47, 42, 0.88) 72%,
                rgba(4, 47, 42, 1) 100%
            );
    }

    .hero-slide::after {
        display: none;
    }

    .hero-slide .container,
    .hero-controls {
        width: calc(100% - 32px);
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-copy .eyebrow {
        margin-bottom: 10px;

        font-size: 0.58rem;
        line-height: 1.35;
        letter-spacing: 0.14em;
    }

    .hero-copy h1,
    .hero-copy .hero-title {
        max-width: 100%;
        margin-bottom: 13px;

        font-size: clamp(2.05rem, 9vw, 2.85rem);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    .hero-copy p {
        max-width: 100%;

        color: rgba(255, 255, 255, 0.88);
        font-size: 14px;
        line-height: 1.58;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;

        margin-top: 20px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 52px;

        justify-content: center;

        padding-right: 18px;
        padding-left: 18px;

        text-align: center;
    }

    .hero-actions .btn + .btn {
        margin-top: 0;
    }

    .hero-meta {
        display: none;
    }

    .hero-controls {
        bottom: 30px;
        justify-content: center;
    }

    .hero-dot {
        width: 34px;
        height: 4px;
    }
}


/* ========================================
   HERO - MOBILE PEQUENO
   ======================================== */

@media (max-width: 420px) {
    .hero-carousel,
    .hero-slide {
        min-height: 790px;
    }

    .hero-slide {
        padding: 138px 0 84px;
    }

    .hero-slide .container,
    .hero-controls {
        width: calc(100% - 28px);
    }

    .hero-copy .eyebrow {
        font-size: 0.55rem;
        letter-spacing: 0.13em;
    }

    .hero-copy h1,
    .hero-copy .hero-title {
        font-size: clamp(1.96rem, 9.4vw, 2.45rem);
        line-height: 1.04;
    }

    .hero-copy p {
        font-size: 13.3px;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 18px;
    }

    .hero-actions .btn {
        min-height: 50px;
        font-size: 0.78rem;
    }

    .hero-controls {
        bottom: 24px;
    }

    .hero-dot {
        width: 30px;
    }
}


/* ========================================
   HERO - CELULARES MUITO BAIXOS
   ======================================== */

@media (max-width: 420px) and (max-height: 720px) {
    .hero-carousel,
    .hero-slide {
        min-height: 735px;
    }

    .hero-slide {
        padding-bottom: 72px;
    }

    .hero-copy h1,
    .hero-copy .hero-title {
        font-size: 2rem;
    }

    .hero-copy p {
        font-size: 12.8px;
        line-height: 1.5;
    }

    .hero-actions .btn {
        min-height: 48px;
    }
}


/* ========================================
   HERO - ACESSIBILIDADE
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }

    .hero-dot.is-active span {
        width: 100%;
        animation: none;
    }
}

/* ========================================
   HOME - SINTOMAS E IDENTIFICAÇÃO
   ======================================== */

.symptoms-section {
    position: relative;
    overflow: hidden;

    padding: 120px 0;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(200, 155, 109, 0.1),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbf8f3 100%
        );
}

.symptoms-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -180px;

    width: 470px;
    height: 470px;

    border: 1px solid rgba(7, 95, 85, 0.09);
    border-radius: 50%;

    pointer-events: none;
}

.symptoms-section::after {
    content: "";
    position: absolute;
    bottom: -270px;
    left: -190px;

    width: 540px;
    height: 540px;

    border: 1px solid rgba(200, 155, 109, 0.13);
    border-radius: 50%;

    pointer-events: none;
}

.symptoms-section .container {
    position: relative;
    z-index: 2;
}


/* ========================================
   CABEÇALHO
   ======================================== */

.symptoms-header {
    max-width: 820px;
    margin: 0 auto 58px;

    text-align: center;
}

.symptoms-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: var(--champagne, #c89b6d);
    font-size: 0.72rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.symptoms-header .eyebrow::before,
.symptoms-header .eyebrow::after {
    content: "";

    width: 26px;
    height: 1px;

    background: currentColor;
}

.symptoms-header h2 {
    max-width: 760px;
    margin: 0 auto 20px;

    color: var(--green-950, #042f2a);

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: clamp(2.8rem, 4.8vw, 4.8rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.045em;

    text-wrap: balance;
}

.symptoms-header p {
    max-width: 720px;
    margin: 0 auto;

    color: rgba(29, 29, 29, 0.68);
    font-size: 1.02rem;
    line-height: 1.8;
}


/* ========================================
   GRID
   ======================================== */

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}


/* ========================================
   CARDS
   ======================================== */

.symptom-card {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: flex-start;
    gap: 20px;

    min-height: 225px;
    padding: 30px;

    border: 1px solid rgba(7, 95, 85, 0.18);
    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            #f2f7f4 0%,
            #e8f1ec 100%
        );

    box-shadow:
        0 20px 50px rgba(7, 60, 54, 0.08),
        0 4px 14px rgba(0, 0, 0, 0.03);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.symptom-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        var(--green-900, #075f55),
        var(--champagne, #c89b6d)
    );

    opacity: 0;

    transform: scaleX(0);
    transform-origin: left center;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;

    pointer-events: none;
}

.symptom-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;

    width: 120px;
    height: 120px;

    border: 1px solid rgba(7, 95, 85, 0.14);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.16);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;

    pointer-events: none;
}

.symptom-card:hover {
    transform: translateY(-6px);

    border-color: rgba(7, 95, 85, 0.34);

    background:
        linear-gradient(
            145deg,
            #edf6f1 0%,
            #dfece5 100%
        );

    box-shadow:
        0 28px 62px rgba(7, 60, 54, 0.13),
        0 8px 20px rgba(0, 0, 0, 0.04);
}

.symptom-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.symptom-card:hover::after {
    transform: scale(1.16);
    border-color: rgba(200, 155, 109, 0.28);
}


/* ========================================
   NÚMERO
   ======================================== */

.symptom-number {
    position: relative;
    z-index: 2;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border: 1px solid rgba(7, 95, 85, 0.26);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.72);

    color: var(--green-900, #075f55);
    font-size: 0.74rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;

    box-shadow: 0 6px 18px rgba(4, 47, 42, 0.06);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.symptom-card:hover .symptom-number {
    border-color: var(--green-900, #075f55);
    background: var(--green-900, #075f55);
    color: #ffffff;

    transform: rotate(-5deg);
}


/* ========================================
   CONTEÚDO DOS CARDS
   ======================================== */

.symptom-card-content {
    position: relative;
    z-index: 2;
}

.symptom-card h3 {
    margin: 4px 0 12px;

    color: var(--green-950, #042f2a);

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: 1.65rem;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.symptom-card p {
    margin: 0;

    color: rgba(22, 49, 44, 0.72);
    font-size: 0.93rem;
    line-height: 1.72;
}


/* ========================================
   RODAPÉ DA SEÇÃO
   ======================================== */

.symptoms-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-top: 34px;
    padding: 30px 34px;

    border: 1px solid rgba(7, 95, 85, 0.12);
    border-radius: 26px;

    background:
        radial-gradient(
            circle at 86% 18%,
            rgba(200, 155, 109, 0.14),
            transparent 28%
        ),
        var(--green-950, #042f2a);

    box-shadow: 0 22px 54px rgba(4, 47, 42, 0.14);
}

.symptoms-footer-copy {
    max-width: 720px;
}

.symptoms-footer-copy span {
    display: block;

    margin-bottom: 6px;

    color: var(--champagne, #c89b6d);
    font-size: 0.68rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.symptoms-footer-copy p {
    margin: 0;

    color: #ffffff;

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: clamp(1.55rem, 2.5vw, 2.25rem);
    line-height: 1.12;
    font-weight: 600;
}

.symptoms-footer .btn {
    flex: 0 0 auto;
}


/* ========================================
   RESPONSIVO - TABLET
   ======================================== */

@media (max-width: 1024px) {
    .symptoms-section {
        padding: 100px 0;
    }

    .symptoms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .symptom-card {
        min-height: 215px;
    }
}


/* ========================================
   RESPONSIVO - MOBILE
   ======================================== */

@media (max-width: 760px) {
    .symptoms-section {
        padding: 82px 0;
    }

    .symptoms-header {
        margin-bottom: 40px;
        text-align: left;
    }

    .symptoms-header .eyebrow::after {
        display: none;
    }

    .symptoms-header h2 {
        margin-right: 0;
        margin-left: 0;

        font-size: clamp(2.45rem, 10vw, 3.5rem);
    }

    .symptoms-header p {
        margin-right: 0;
        margin-left: 0;

        font-size: 0.95rem;
        line-height: 1.72;
    }

    .symptoms-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .symptom-card {
        min-height: auto;
        padding: 25px;

        border-radius: 22px;
    }

    .symptom-card h3 {
        font-size: 1.5rem;
    }

    .symptoms-footer {
        flex-direction: column;
        align-items: flex-start;

        padding: 28px;
    }

    .symptoms-footer .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}


/* ========================================
   RESPONSIVO - MOBILE PEQUENO
   ======================================== */

@media (max-width: 420px) {
    .symptoms-section {
        padding: 72px 0;
    }

    .symptom-card {
        gap: 16px;
        padding: 22px;
    }

    .symptom-number {
        width: 40px;
        height: 40px;

        font-size: 0.68rem;
    }

    .symptom-card p {
        font-size: 0.88rem;
    }

    .symptoms-footer {
        padding: 24px;

        border-radius: 22px;
    }
}


/* ========================================
   ACESSIBILIDADE
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .symptom-card,
    .symptom-card::before,
    .symptom-card::after,
    .symptom-number {
        transition: none;
    }

    .symptom-card:hover,
    .symptom-card:hover .symptom-number {
        transform: none;
    }
}


/* ========================================
   HOME - CONDIÇÕES AVALIADAS
   ======================================== */

.treatments-section {
    position: relative;
    overflow: hidden;

    padding: 125px 0;

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(200, 155, 109, 0.14),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(255, 255, 255, 0.055),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            var(--green-950, #042f2a) 0%,
            var(--green-900, #075f55) 100%
        );

    color: #ffffff;
}


/* ========================================
   ELEMENTOS DECORATIVOS
   ======================================== */

.treatments-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -180px;

    width: 540px;
    height: 540px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;

    pointer-events: none;
}

.treatments-section::after {
    content: "";
    position: absolute;
    right: -210px;
    bottom: -260px;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(200, 155, 109, 0.13);
    border-radius: 50%;

    pointer-events: none;
}

.treatments-section .container {
    position: relative;
    z-index: 2;
}


/* ========================================
   CABEÇALHO
   ======================================== */

.treatments-header {
    max-width: 840px;
    margin: 0 auto 60px;

    text-align: center;
}

.treatments-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: var(--champagne, #c89b6d);
    font-size: 0.72rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.treatments-header .eyebrow::before,
.treatments-header .eyebrow::after {
    content: "";

    width: 28px;
    height: 1px;

    background: currentColor;
}

.treatments-header h2 {
    max-width: 780px;
    margin: 0 auto 22px;

    color: #ffffff;

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: clamp(2.9rem, 4.8vw, 4.8rem);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.045em;

    text-wrap: balance;
}

.treatments-header p {
    max-width: 720px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
}


/* ========================================
   GRID
   ======================================== */

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}


/* ========================================
   CARDS
   ======================================== */

.treatments-section .service-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    min-height: 265px;
    padding: 28px;

    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 27px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbf8f3 100%
        );

    box-shadow:
        0 24px 62px rgba(0, 0, 0, 0.13),
        0 6px 18px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.treatments-section .service-card::before {
    content: "";
    position: absolute;
    top: -76px;
    right: -76px;

    width: 165px;
    height: 165px;

    border: 1px solid rgba(200, 155, 109, 0.2);
    border-radius: 50%;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease;

    pointer-events: none;
}

.treatments-section .service-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 4px;

    background: linear-gradient(
        90deg,
        var(--champagne, #c89b6d),
        rgba(200, 155, 109, 0.25)
    );

    transform: scaleX(0);
    transform-origin: left center;

    transition: transform 0.35s ease;

    pointer-events: none;
}

.treatments-section .service-card:hover {
    transform: translateY(-9px);

    border-color: rgba(200, 155, 109, 0.65);

    box-shadow:
        0 34px 76px rgba(0, 0, 0, 0.18),
        0 10px 26px rgba(0, 0, 0, 0.07);
}

.treatments-section .service-card:hover::before {
    transform: scale(1.16);
    border-color: rgba(200, 155, 109, 0.36);
}

.treatments-section .service-card:hover::after {
    transform: scaleX(1);
}


/* ========================================
   CABEÇALHO DO CARD
   NÚMERO E TÍTULO NA MESMA LINHA
   ======================================== */

.service-card-heading {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
}

.treatments-section .icon-dot {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(200, 155, 109, 0.48);
    border-radius: 50%;

    background: rgba(200, 155, 109, 0.06);

    color: var(--champagne, #c89b6d);
    font-size: 0.7rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.treatments-section .service-card:hover .icon-dot {
    background: var(--champagne, #c89b6d);
    color: var(--green-950, #042f2a);

    transform: rotate(-6deg);
}

.treatments-section .service-card h3 {
    margin: 0;

    color: var(--green-950, #042f2a);

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: 1.82rem;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.03em;
}


/* ========================================
   CONTEÚDO DOS CARDS
   ======================================== */

.service-card-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex: 1;
    flex-direction: column;
}

.treatments-section .service-card p {
    margin: 0 0 22px;

    color: rgba(29, 29, 29, 0.65);
    font-size: 0.91rem;
    line-height: 1.68;
}

.treatments-section .service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;
    margin-top: auto;

    color: var(--green-900, #075f55);
    font-size: 0.81rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.025em;
    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.treatments-section .service-card a span {
    font-size: 1rem;

    transition: transform 0.25s ease;
}

.treatments-section .service-card a:hover {
    gap: 12px;
    color: var(--champagne, #c89b6d);
}

.treatments-section .service-card a:hover span {
    transform: translateX(3px);
}

.treatments-section .service-card a:focus-visible {
    outline: 3px solid rgba(200, 155, 109, 0.35);
    outline-offset: 5px;
    border-radius: 4px;
}


/* ========================================
   RODAPÉ DA SEÇÃO
   ======================================== */

.treatments-footer {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;

    margin-top: 34px;
    padding: 32px 34px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.08);

    box-shadow:
        0 22px 54px rgba(0, 0, 0, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.treatments-footer::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;

    width: 190px;
    height: 190px;

    border: 1px solid rgba(200, 155, 109, 0.14);
    border-radius: 50%;

    pointer-events: none;
}

.treatments-footer-content {
    position: relative;
    z-index: 2;

    max-width: 750px;
}

.treatments-footer-content span {
    display: block;

    margin-bottom: 7px;

    color: var(--champagne, #c89b6d);
    font-size: 0.68rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.treatments-footer p {
    margin: 0;

    color: rgba(255, 255, 255, 0.76);
    font-size: 0.96rem;
    line-height: 1.72;
}


/* ========================================
   BOTÃO DO RODAPÉ
   ======================================== */

.treatments-button {
    position: relative;
    z-index: 2;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 14px 24px;

    border: 1px solid #ffffff;
    border-radius: 999px;

    background: #ffffff;
    color: var(--green-950, #042f2a);

    font-size: 0.81rem;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.treatments-button:hover {
    border-color: var(--champagne, #c89b6d);
    background: var(--champagne, #c89b6d);
    color: var(--green-950, #042f2a);

    transform: translateY(-2px);

    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.treatments-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.35);
    outline-offset: 4px;
}


/* ========================================
   MOVIMENTO DE ENTRADA
   ======================================== */

.treatments-section [data-reveal] {
    opacity: 0;

    transform: translateY(34px);

    transition:
        opacity 0.75s ease var(--reveal-delay, 0s),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1)
            var(--reveal-delay, 0s);
}

.treatments-section [data-reveal].is-visible,
.treatments-section [data-reveal].revealed,
.treatments-section [data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

.treatments-section .service-card[data-reveal] {
    transform: translateY(38px) scale(0.975);
}

.treatments-section .service-card[data-reveal].is-visible,
.treatments-section .service-card[data-reveal].revealed,
.treatments-section .service-card[data-reveal].active {
    transform: translateY(0) scale(1);
}


/* ========================================
   RESPONSIVO - TABLET
   ======================================== */

@media (max-width: 1024px) {
    .treatments-section {
        padding: 105px 0;
    }

    .treatments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .treatments-section .service-card {
        min-height: 255px;
    }
}


/* ========================================
   RESPONSIVO - MOBILE
   ======================================== */

@media (max-width: 760px) {
    .treatments-section {
        padding: 84px 0;
    }

    .treatments-header {
        margin-bottom: 42px;
        text-align: left;
    }

    .treatments-header .eyebrow::after {
        display: none;
    }

    .treatments-header h2 {
        margin-right: 0;
        margin-left: 0;

        font-size: clamp(2.5rem, 10vw, 3.6rem);
    }

    .treatments-header p {
        margin-right: 0;
        margin-left: 0;

        font-size: 0.94rem;
        line-height: 1.72;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .treatments-section .service-card {
        min-height: auto;
        padding: 25px;

        border-radius: 23px;
    }

    .service-card-heading {
        gap: 13px;
        margin-bottom: 17px;
    }

    .treatments-section .service-card h3 {
        font-size: 1.68rem;
    }

    .treatments-footer {
        flex-direction: column;
        align-items: flex-start;

        padding: 28px;

        border-radius: 23px;
    }

    .treatments-button {
        width: 100%;
    }
}


/* ========================================
   RESPONSIVO - MOBILE PEQUENO
   ======================================== */

@media (max-width: 480px) {
    .treatments-section {
        padding: 72px 0;
    }

    .treatments-section .service-card {
        padding: 22px;
    }

    .treatments-section .icon-dot {
        width: 40px;
        height: 40px;

        font-size: 0.66rem;
    }

    .treatments-section .service-card h3 {
        font-size: 1.55rem;
    }

    .treatments-section .service-card p {
        font-size: 0.88rem;
    }

    .treatments-footer {
        padding: 24px;
    }
}


/* ========================================
   ACESSIBILIDADE
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .treatments-section [data-reveal] {
        opacity: 1;
        transform: none;

        transition: none;
    }

    .treatments-section .service-card,
    .treatments-section .service-card::before,
    .treatments-section .service-card::after,
    .treatments-section .icon-dot,
    .treatments-button {
        transition: none;
    }

    .treatments-section .service-card:hover,
    .treatments-button:hover {
        transform: none;
    }
}


/* ========================================
   HOME - MÉTODO RMA
   ======================================== */

.method-showcase {
    position: relative;
    overflow: hidden;

    padding: 125px 0;

    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(200, 155, 109, 0.1),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #fbf8f3 0%,
            #ffffff 100%
        );
}

.method-showcase::before {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -220px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(7, 95, 85, 0.09);
    border-radius: 50%;

    pointer-events: none;
}


/* ========================================
   GRID
   ======================================== */

.method-showcase-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;
    gap: clamp(50px, 7vw, 100px);
}


/* ========================================
   IMAGEM SEM BORDA E SEM CAIXA
   ======================================== */

.method-showcase-media {
    position: relative;

    width: 100%;
    min-width: 0;

    overflow: visible;

    border: 0;
    border-radius: 0;

    background: transparent;

    box-shadow: none;
}

.method-showcase-media::before,
.method-showcase-media::after {
    display: none;
    content: none;
}

.method-showcase-media img {
    display: block;

    width: 88%;
    height: auto;
    margin: 0 auto;

    border: 0;
    border-radius: 0;

    object-fit: contain;
    object-position: center;

    box-shadow: none;
    filter: none;
}


/* ========================================
   CONTEÚDO
   ======================================== */

.method-showcase-content {
    max-width: 590px;
}

.method-showcase-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: var(--champagne, #c89b6d);
    font-size: 0.72rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.method-showcase-content .eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    background: currentColor;
}

.method-showcase-content h2 {
    margin: 0 0 22px;

    color: var(--green-950, #042f2a);
    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.8rem, 4.5vw, 4.55rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.045em;

    text-wrap: balance;
}

.method-showcase-content .lead {
    margin: 0 0 18px;

    color: rgba(29, 29, 29, 0.76);
    font-size: 1.08rem;
    line-height: 1.8;
}

.method-showcase-content > p:not(.lead) {
    margin: 0 0 26px;

    color: rgba(29, 29, 29, 0.64);
    font-size: 0.96rem;
    line-height: 1.78;
}


/* ========================================
   DESTAQUES
   ======================================== */

.method-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 30px;
}

.method-highlights span {
    display: inline-flex;
    align-items: center;

    padding: 10px 14px;

    border: 1px solid rgba(7, 95, 85, 0.13);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.82);

    color: var(--green-900, #075f55);
    font-size: 0.76rem;
    line-height: 1.2;
    font-weight: 750;
}


/* ========================================
   BOTÃO
   ======================================== */

.method-showcase .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 14px 24px;

    border: 1px solid var(--green-950, #042f2a);
    border-radius: 999px;

    background: var(--green-950, #042f2a);
    color: #ffffff;

    font-size: 0.82rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.method-showcase .btn-outline:hover {
    border-color: var(--champagne, #c89b6d);
    background: var(--champagne, #c89b6d);
    color: var(--green-950, #042f2a);

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(4, 47, 42, 0.14);
}

.method-showcase .btn-outline:focus-visible {
    outline: 3px solid rgba(200, 155, 109, 0.38);
    outline-offset: 4px;
}


/* ========================================
   RESPONSIVO - TABLET
   ======================================== */

@media (max-width: 1024px) {
    .method-showcase {
        padding: 100px 0;
    }

    .method-showcase-grid {
        gap: 50px;
    }

    .method-showcase-media img {
        width: 92%;
    }
}


/* ========================================
   RESPONSIVO - MOBILE
   ======================================== */

@media (max-width: 760px) {
    .method-showcase {
        padding: 82px 0;
    }

    .method-showcase-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .method-showcase-media {
        order: 1;
    }

    .method-showcase-content {
        order: 2;
        max-width: 100%;
    }

    .method-showcase-media img {
        width: 84%;
    }

    .method-showcase-content h2 {
        font-size: clamp(2.6rem, 10vw, 3.7rem);
    }

    .method-showcase-content .lead {
        font-size: 1rem;
        line-height: 1.74;
    }

    .method-showcase-content > p:not(.lead) {
        font-size: 0.92rem;
        line-height: 1.72;
    }
}


/* ========================================
   RESPONSIVO - MOBILE PEQUENO
   ======================================== */

@media (max-width: 480px) {
    .method-showcase {
        padding: 72px 0;
    }

    .method-showcase-media img {
        width: 92%;
    }

    .method-highlights {
        gap: 8px;
    }

    .method-highlights span {
        padding: 9px 12px;
        font-size: 0.7rem;
    }

    .method-showcase .btn-outline {
        width: 100%;
    }
}


/* ========================================
   ACESSIBILIDADE
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .method-showcase .btn-outline {
        transition: none;
    }

    .method-showcase .btn-outline:hover {
        transform: none;
    }
}

/* ========================================
   HOME - ESPECIALISTA RESPONSÁVEL
   ======================================== */

.doctor-band {
    position: relative;
    overflow: hidden;

    padding: 120px 0;

    background:
        radial-gradient(
            circle at 10% 14%,
            rgba(200, 155, 109, 0.13),
            transparent 26%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(255, 255, 255, 0.045),
            transparent 28%
        ),
        var(--green-950, #042f2a);

    color: #ffffff;
}

.doctor-band::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -140px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.doctor-band::after {
    content: "";
    position: absolute;
    bottom: -240px;
    left: -170px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(200, 155, 109, 0.11);
    border-radius: 50%;

    pointer-events: none;
}


/* ========================================
   GRID PRINCIPAL
   ======================================== */

.doctor-band-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(420px, 1.05fr);

    align-items: center;
    gap: clamp(54px, 7vw, 105px);
}


/* ========================================
   CONTEÚDO
   ======================================== */

.doctor-band-content {
    max-width: 600px;
}

.doctor-band-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: var(--champagne, #c89b6d);
    font-size: 0.72rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.doctor-band-content .eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    background: currentColor;
}

.doctor-band-content h2 {
    margin: 0 0 10px;

    color: #ffffff;
    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    line-height: 0.96;
    font-weight: 600;
    letter-spacing: -0.045em;

    text-wrap: balance;
}

.doctor-registration {
    margin: 0 0 12px;

    color: var(--champagne, #c89b6d);
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.doctor-focus {
    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.52);
    font-size: 0.7rem;
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.doctor-band-content .lead {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    line-height: 1.82;
}

.doctor-description {
    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.68);
    font-size: 0.96rem;
    line-height: 1.8;
}


/* ========================================
   DESTAQUES
   ======================================== */

.doctor-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 32px;
}

.doctor-highlights span {
    display: inline-flex;
    align-items: center;

    padding: 10px 14px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.045);

    color: rgba(255, 255, 255, 0.78);
    font-size: 0.74rem;
    line-height: 1.2;
    font-weight: 700;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* ========================================
   ÁREA VISUAL
   ======================================== */

.doctor-band-visual {
    position: relative;

    width: 100%;
    max-width: 620px;

    margin-left: auto;
}

.doctor-visual-stage {
    position: relative;

    min-height: 690px;
    padding: 38px 34px 42px;
}


/* Glow atrás da imagem */

.doctor-stage-glow {
    position: absolute;
    top: 78px;
    left: 38px;
    z-index: 0;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(200, 155, 109, 0.22) 0%,
        rgba(200, 155, 109, 0.12) 32%,
        rgba(200, 155, 109, 0.04) 58%,
        transparent 74%
    );

    filter: blur(16px);

    pointer-events: none;
}


/* Placa assimétrica atrás da foto */

.doctor-stage-panel {
    position: absolute;
    top: 72px;
    right: 0;
    z-index: 0;

    width: 78%;
    height: 82%;

    border: 1px solid rgba(224, 209, 191, 0.46);
    border-radius: 46px 140px 42px 120px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 249, 242, 0.92),
            rgba(245, 235, 223, 0.82)
        );

    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);

    transform: rotate(-3deg);

    pointer-events: none;
}


/* Contorno externo */

.doctor-stage-outline {
    position: absolute;
    top: 18px;
    right: 26px;
    z-index: 0;

    width: 84%;
    height: 90%;

    border: 1px solid rgba(200, 155, 109, 0.22);
    border-radius: 44px 120px 40px 110px;

    transform: rotate(4deg);

    pointer-events: none;
}


/* Discos decorativos */

.doctor-stage-disc {
    position: absolute;
    z-index: 0;

    border-radius: 50%;

    pointer-events: none;
}

.doctor-stage-disc-1 {
    left: -16px;
    bottom: 90px;

    width: 150px;
    height: 150px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.01) 68%,
            transparent 72%
        );
}

.doctor-stage-disc-2 {
    right: -18px;
    top: 28px;

    width: 130px;
    height: 130px;

    border: 1px solid rgba(200, 155, 109, 0.12);

    background:
        radial-gradient(
            circle,
            rgba(200, 155, 109, 0.14),
            rgba(200, 155, 109, 0.03) 70%,
            transparent 74%
        );
}


/* ========================================
   FOTO
   ======================================== */

.doctor-band-media {
    position: relative;
    z-index: 2;
    overflow: hidden;

    width: 82%;
    min-height: 600px;
    margin-left: auto;
    padding: 12px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;

    background: rgba(255, 255, 255, 0.05);

    box-shadow:
        0 38px 85px rgba(0, 0, 0, 0.26),
        0 12px 30px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.doctor-band-media::after {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 2;

    border-radius: 24px;

    background: linear-gradient(
        180deg,
        rgba(4, 47, 42, 0.02) 35%,
        rgba(4, 47, 42, 0.14) 100%
    );

    pointer-events: none;
}

.doctor-band-media img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;
    min-height: 576px;

    border-radius: 24px;

    object-fit: cover;
    object-position: center top;
}


/* ========================================
   LEGENDA DA IMAGEM
   ======================================== */

.doctor-image-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;

    min-width: 255px;
    padding: 18px 20px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;

    background: rgba(4, 47, 42, 0.88);

    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.doctor-image-caption span,
.doctor-image-caption strong {
    display: block;
}

.doctor-image-caption span {
    margin-bottom: 5px;

    color: var(--champagne, #c89b6d);
    font-size: 0.66rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.doctor-image-caption strong {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 700;
}


/* ========================================
   RESPONSIVO - DESKTOP MENOR
   ======================================== */

@media (max-width: 1100px) {
    .doctor-band {
        padding: 105px 0;
    }

    .doctor-band-grid {
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(380px, 1.05fr);

        gap: 54px;
    }

    .doctor-band-visual {
        max-width: 580px;
    }

    .doctor-visual-stage {
        min-height: 640px;
        padding: 30px 22px 38px;
    }

    .doctor-band-media {
        width: 84%;
        min-height: 560px;
    }

    .doctor-band-media img {
        min-height: 536px;
    }
}


/* ========================================
   RESPONSIVO - TABLET
   ======================================== */

@media (max-width: 900px) {
    .doctor-band-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .doctor-band-content {
        max-width: 700px;
    }

    .doctor-band-visual {
        max-width: 620px;
        margin: 0 auto;
    }

    .doctor-visual-stage {
        min-height: 650px;
        padding: 26px 18px 42px;
    }

    .doctor-stage-panel {
        width: 82%;
        height: 80%;
    }

    .doctor-stage-outline {
        width: 88%;
    }

    .doctor-band-media {
        width: 86%;
        min-height: 570px;
    }

    .doctor-band-media img {
        min-height: 546px;
    }
}


/* ========================================
   RESPONSIVO - MOBILE
   ======================================== */

@media (max-width: 760px) {
    .doctor-band {
        padding: 82px 0;
    }

    .doctor-band-grid {
        gap: 42px;
    }

    .doctor-band-content h2 {
        font-size: clamp(2.8rem, 11vw, 4rem);
    }

    .doctor-band-content .lead {
        font-size: 1rem;
        line-height: 1.74;
    }

    .doctor-description {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .doctor-visual-stage {
        min-height: auto;
        padding: 14px 0 62px;
    }

    .doctor-stage-glow {
        top: 32px;
        left: 8px;

        width: 220px;
        height: 220px;
    }

    .doctor-stage-panel {
        top: 38px;
        right: 8px;

        width: 84%;
        height: 78%;

        border-radius: 34px 90px 32px 80px;
    }

    .doctor-stage-outline {
        top: 10px;
        right: 12px;

        width: 88%;
        height: 82%;

        border-radius: 32px 84px 30px 76px;
    }

    .doctor-band-media {
        width: 88%;
        min-height: 480px;
        padding: 9px;

        border-radius: 26px;
    }

    .doctor-band-media::after {
        inset: 9px;
        border-radius: 18px;
    }

    .doctor-band-media img {
        min-height: 462px;
        border-radius: 18px;
    }

    .doctor-stage-disc-1 {
        left: -10px;
        bottom: 70px;

        width: 110px;
        height: 110px;
    }

    .doctor-stage-disc-2 {
        right: -8px;
        top: 20px;

        width: 95px;
        height: 95px;
    }

    .doctor-image-caption {
        left: 14px;
        bottom: 0;

        width: calc(100% - 28px);
        min-width: 0;
        padding: 15px 16px;
    }
}


/* ========================================
   RESPONSIVO - MOBILE PEQUENO
   ======================================== */

@media (max-width: 480px) {
    .doctor-band {
        padding: 72px 0;
    }

    .doctor-focus {
        font-size: 0.64rem;
    }

    .doctor-highlights {
        gap: 8px;
    }

    .doctor-highlights span {
        padding: 9px 12px;
        font-size: 0.68rem;
    }

    .doctor-visual-stage {
        padding: 10px 0 56px;
    }

    .doctor-stage-panel {
        width: 86%;
        border-radius: 28px 68px 28px 64px;
    }

    .doctor-stage-outline {
        width: 90%;
        border-radius: 28px 68px 28px 64px;
    }

    .doctor-band-media {
        width: 90%;
        min-height: 405px;
    }

    .doctor-band-media img {
        min-height: 387px;
    }

    .doctor-stage-disc-2 {
        display: none;
    }

    .doctor-image-caption {
        left: 10px;

        width: calc(100% - 20px);
        padding: 14px 15px;
    }
}


/* ========================================
   HOME - CTA FINAL
   ======================================== */

.final-cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;

    background: #ffffff;
}

.final-cta-band {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;

    padding: 52px 56px;

    border: 1px solid rgba(7, 95, 85, 0.13);
    border-radius: 32px;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(200, 155, 109, 0.17),
            transparent 32%
        ),
        var(--green-950, #042f2a);

    box-shadow:
        0 30px 72px rgba(4, 47, 42, 0.16),
        0 8px 22px rgba(0, 0, 0, 0.04);
}

.final-cta-band::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -170px;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.final-cta-content .eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    color: var(--champagne, #c89b6d);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.final-cta-content h2 {
    margin: 0 0 14px;

    color: #ffffff;
    font-family: var(
        --font-display,
        "Cormorant Garamond",
        Georgia,
        serif
    );
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;

    text-wrap: balance;
}

.final-cta-content p {
    max-width: 640px;
    margin: 0;

    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.75;
}

.final-cta-actions {
    position: relative;
    z-index: 2;

    flex: 0 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.final-cta-actions span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    text-align: center;
}


/* ========================================
   RESPONSIVO - TELAS MÉDIAS
   ======================================== */

@media (max-width: 1024px) {
    .symptoms-section,
    .treatments-section,
    .method-showcase,
    .doctor-band {
        padding: 100px 0;
    }

    .symptoms-grid,
    .treatments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .symptom-card {
        min-height: 215px;
    }

    .treatments-section .service-card {
        min-height: 300px;
    }

    .method-showcase-grid,
    .doctor-band-grid {
        gap: 50px;
    }

    .method-showcase-media,
    .method-showcase-media img,
    .doctor-band-media,
    .doctor-band-media img {
        min-height: 500px;
    }

    .final-cta-band {
        padding: 46px;
    }
}


/* ========================================
   RESPONSIVO - TABLET E MOBILE
   ======================================== */

@media (max-width: 760px) {
    .symptoms-section,
    .treatments-section,
    .method-showcase,
    .doctor-band {
        padding: 82px 0;
    }

    .symptoms-header,
    .treatments-section .section-header {
        margin-bottom: 40px;
        text-align: left;
    }

    .symptoms-header .eyebrow::after,
    .treatments-section .section-header .eyebrow::after {
        display: none;
    }

    .symptoms-header h2,
    .treatments-section .section-header h2 {
        margin-left: 0;
        margin-right: 0;

        font-size: clamp(2.45rem, 10vw, 3.5rem);
    }

    .symptoms-header p,
    .treatments-section .section-header p {
        margin-left: 0;
        margin-right: 0;

        font-size: 0.95rem;
        line-height: 1.72;
    }

    .symptoms-grid,
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .symptom-card {
        min-height: auto;
        padding: 25px;
        border-radius: 22px;
    }

    .symptom-card h3 {
        font-size: 1.5rem;
    }

    .treatments-section .service-card {
        min-height: auto;
        padding: 26px;
        border-radius: 22px;
    }

    .treatments-section .service-card h3 {
        font-size: 1.72rem;
    }

    .symptoms-footer,
    .treatments-footer {
        flex-direction: column;
        align-items: flex-start;

        padding: 28px;
    }

    .symptoms-footer .btn,
    .treatments-footer .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .method-showcase-grid,
    .doctor-band-grid {
        display: flex;
        flex-direction: column;
        gap: 42px;
    }

    .method-showcase-media,
    .doctor-band-media {
        width: 100%;
        min-height: 420px;
        border-radius: 26px;
    }

    .method-showcase-media img,
    .doctor-band-media img {
        min-height: 420px;
    }

    .method-showcase-content,
    .doctor-band-content {
        max-width: 100%;
    }

    .method-showcase-content h2,
    .doctor-band-content h2 {
        font-size: clamp(2.6rem, 10vw, 3.7rem);
    }

    .final-cta-section {
        padding: 82px 0;
    }

    .final-cta-band {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;

        padding: 38px 30px;
        border-radius: 26px;
    }

    .final-cta-actions {
        width: 100%;
        align-items: stretch;
    }

    .final-cta-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}


/* ========================================
   RESPONSIVO - MOBILE PEQUENO
   ======================================== */

@media (max-width: 420px) {
    .symptoms-section,
    .treatments-section,
    .method-showcase,
    .doctor-band {
        padding: 72px 0;
    }

    .symptom-card {
        gap: 16px;
        padding: 22px;
    }

    .symptom-number {
        width: 40px;
        height: 40px;
    }

    .symptom-card p,
    .treatments-section .service-card p {
        font-size: 0.88rem;
    }

    .symptoms-footer,
    .treatments-footer {
        padding: 24px;
        border-radius: 22px;
    }

    .method-showcase-media,
    .doctor-band-media {
        min-height: 360px;
        border-radius: 22px;
    }

    .method-showcase-media img,
    .doctor-band-media img {
        min-height: 360px;
    }

    .method-highlights {
        gap: 8px;
    }

    .method-highlights span {
        padding: 9px 12px;
        font-size: 0.7rem;
    }

    .final-cta-section {
        padding: 72px 0;
    }

    .final-cta-band {
        padding: 32px 24px;
        border-radius: 22px;
    }

    .final-cta-content h2 {
        font-size: 2.45rem;
    }
}