/* Variaveis */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --azul-claro: #BDD5E1;
    --azul-escuro: #09456C;
    --branco-puro: #FFFFFF;
    --fundo-leve: #F4F7F9;
    --fundo-creme: #F7F3EC;
    --texto-escuro: #222222;
    --cinza-borda: #E2E8F0;
    --cinza-texto: #4A5568;
    --dourado: #B88A3A;
    --creme-card: #FBF7F0;
    --bege: #EDE8D0;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.03rem;
    background-color: var(--fundo-leve);
    color: var(--texto-escuro);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("logo-bruna-fundo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: min(520px, 75vw);
    opacity: 0.09;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

header,
main,
footer,
.frase-transicao,
.whatsapp-fixo {
    position: relative;
    z-index: 1;
}

/* Animacoes */
@keyframes aparecerESubir {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulsarWhatsapp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Header */
header {
    background-color: var(--fundo-creme);
    color: var(--azul-escuro);
    padding: 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

header::before,
header::after {
    display: none;
}

.logo-topo {
    position: absolute;
    top: 4px;
    left: 36px;
    width: 88px;
    height: auto;
    z-index: 6;
}

.logo-topo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.botao-menu {
    display: none;
}

.menu-topo {
    width: 100%;
    min-height: 72px;
    margin: 0;
    padding: 0 40px 0 170px;
    background-color: var(--azul-escuro);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    position: relative;
    z-index: 4;
}

.menu-topo a {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--branco-puro);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1;
    opacity: 0.92;
    position: relative;
    padding: 0;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.menu-topo a:not(.menu-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--azul-claro), rgba(255, 255, 255, 0.9));
    box-shadow: 0 0 10px rgba(189, 213, 225, 0.75);
    transition: width 0.3s ease;
}

.menu-topo a:not(.menu-cta):hover::after {
    width: 100%;
}

.menu-topo a:hover {
    color: var(--azul-claro);
    opacity: 1;
}

.instagram-link {
    color: inherit;
}

.instagram-icone {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.instagram-foto {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 25%;
    border: 4px solid var(--azul-claro);
    margin: 15px auto 17px;
    display: block;
    box-shadow: 0 10px 28px rgba(9, 69, 108, 0.16);
}

.menu-topo .instagram-menu {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-topo .instagram-menu::after {
    display: none;
}

.menu-topo .instagram-menu:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.menu-topo .instagram-menu .instagram-icone {
    width: 24px;
    height: 24px;
}

.menu-cta {
    background-color: var(--azul-claro);
    color: var(--azul-escuro) !important;
    min-width: 160px;
    height: 42px;
    padding: 0 22px;
    border-radius: 8px;
    opacity: 1 !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
}

.menu-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.menu-cta:hover {
    background-color: var(--branco-puro);
    color: var(--azul-escuro) !important;
}

.menu-cta:hover::after {
    left: 120%;
}

/* Hero */
.hero {
    width: 100%;
    max-width: none;
    min-height: 560px;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(360px, 48%) minmax(0, 52%);
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.hero-texto {
    width: 100%;
    max-width: 560px;
    padding: 76px 56px 68px;
    margin-left: 85px;
    text-align: left;
    align-self: center;
    position: relative;
    z-index: 2;
}

.hero-imagem {
    display: block;
    min-height: 560px;
    overflow: hidden;
    background-color: #D8C7B5;
}

.hero-imagem img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: left center;
}

.hero-foto-mobile {
    display: none;
}

.hero-etiqueta {
    display: inline-block;
    color: var(--dourado);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.detalhe-linha,
.detalhe-folhas {
    display: block;
    width: min(320px, 100%);
    height: 1px;
    margin: 18px 0 24px;
    background: linear-gradient(90deg, var(--dourado), rgba(184, 138, 58, 0.18));
}

.hero-beneficios {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    max-width: 520px;
    margin-top: 44px;
    margin-left: -40px;
    padding-top: 28px;
    border-top: 1px solid rgba(184, 138, 58, 0.28);
}

.hero-beneficio {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.hero-icone {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 1px solid rgba(184, 138, 58, 0.45);
    border-radius: 50%;
    color: var(--dourado);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-beneficio strong {
    display: block;
    color: var(--azul-escuro);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.hero-beneficio small {
    display: block;
    color: var(--cinza-texto);
    font-size: 0.82rem;
    line-height: 1.4;
}

.botao-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    background: linear-gradient(135deg, var(--dourado), var(--dourado));
    color: var(--branco-puro);
    text-decoration: none;
    font-weight: 700;
    padding: 14px 24px;
    border: 1px solid rgba(9, 69, 108, 0.18);
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(9, 69, 108, 0.22);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botao-whatsapp-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.botao-whatsapp-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(9, 69, 108, 0.3);
}

.botao-whatsapp-hero:hover::after {
    left: 120%;
}

.botao-whatsapp-hero img,
.botao-whatsapp-hero span {
    position: relative;
    z-index: 1;
}

.botao-whatsapp-hero img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
}

header h1 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(3rem, 4.2vw, 4.2rem);
    line-height: 0.95;
    color: var(--azul-escuro);
    margin-bottom: 10px;
}

header h2,
header h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    color: var(--azul-escuro);
    margin-bottom: 26px;
}

header p {
    max-width: 460px;
    font-family: 'Inter', sans-serif;
    font-size: 1.16rem;
    line-height: 1.75;
    margin-bottom: 32px;
    color: var(--cinza-texto);
}

/* Faixa de transicao */
.frase-transicao {
    width: min(1000px, calc(100% - 40px));
    max-width: 1000px;
    margin: -32px auto 20px;
    padding: 30px 36px;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(9, 69, 108, 0.12);
    position: relative;
    z-index: 3;
    text-align: left;
}

.frase-transicao p {
    color: var(--texto-escuro);
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    line-height: 1.35;
    margin-bottom: 4px;
}

.frase-transicao strong {
    color: var(--azul-escuro);
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.8vw, 2.15rem);
}

/* Base */
main section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    animation-timeline: view();
    animation-name: aparecerESubir;
    animation-range: entry 10% cover 30%;
    animation-fill-mode: both;
}

main section h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.15rem;
    color: var(--azul-escuro);
    margin-bottom: 20px;
}

main section p {
    font-size: 1.04rem;
    line-height: 1.72;
    margin-bottom: 15px;
}

main section p strong {
    color: var(--azul-escuro);
    display: block;
    margin-top: 15px;
}

.etiqueta {
    display: inline-block;
    background-color: rgba(189, 213, 225, 0.45);
    color: var(--azul-escuro);
    font-size: 0.88rem;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

/* Botoes */
.botao {
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 6px rgba(9, 69, 108, 0.15);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.botao-claro {
    background-color: var(--azul-claro);
    color: var(--azul-escuro);
}

.botao-claro:hover {
    background-color: var(--branco-puro);
    box-shadow: 0 6px 12px rgba(9, 69, 108, 0.2);
}

.botao-escuro {
    background-color: var(--dourado);
    color: var(--branco-puro);
    padding: 12px 25px;
    border-radius: 6px;
}

.botao-escuro:hover {
    background-color: var(--azul-claro);
    color: var(--azul-escuro);
    box-shadow: 0 6px 12px rgba(9, 69, 108, 0.2);
}

/* Listas em card */
.grade-cards {
    display: grid;
    gap: 18px;
    justify-items: center;
}

.lista-sinais {
    max-width: 860px;
    margin: 0 auto;
}

.lista-card {
    background: linear-gradient(135deg, var(--creme-card), var(--branco-puro));
    border: 1px solid rgba(184, 138, 58, 0.22);
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 22px 55px rgba(9, 69, 108, 0.11);
}

.lista-card ul {
    list-style: none;
}

.lista-card li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(184, 138, 58, 0.18);
}

.lista-card li:last-child {
    border-bottom: none;
}

.lista-card li span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(9, 69, 108, 0.08);
    color: var(--azul-escuro);
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lista-card li strong {
    color: var(--azul-escuro);
    font-size: 1.12rem;
    line-height: 2.1;
}

.lista-card li p {
    grid-column: 2;
    color: var(--cinza-texto);
    font-size: 0.98rem;
    margin: 4px 0 0;
}

/* Cards antigos */
.card {
    width: 100%;
    max-width: none;
    min-height: 210px;
    position: relative;
    overflow: hidden;
    background: var(--branco-puro);
    border: 1px solid rgba(189, 213, 225, 0.65);
    border-radius: 22px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    box-shadow: 0 18px 45px rgba(9, 69, 108, 0.09);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-icone {
    width: 32px;
    height: 32px;
    margin-bottom: 18px;
    border-radius: 14px;
    background-color: var(--branco-puro);
    color: var(--azul-escuro);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(9, 69, 108, 0.18);
    box-shadow: 0 20px 42px rgba(9, 69, 108, 0.14);
}

.card h3,
.card p {
    position: relative;
    z-index: 1;
}

.card h3 {
    font-size: 1.18rem;
    color: var(--azul-escuro);
    margin-bottom: 10px;
    line-height: 1.35;
}

.card p {
    font-size: 1.02rem;
    color: var(--cinza-texto);
    line-height: 1.55;
}

.card-destaque {
    background: var(--branco-puro);
}

/* Dores */
.dores-cabecalho {
    max-width: 880px;
    margin: 0 auto 40px;
    text-align: center;
}

.dores-cabecalho .etiqueta {
    background-color: var(--fundo-creme);
    color: var(--azul-escuro);
    border: 1px solid var(--azul-claro);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dores-cabecalho p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--cinza-texto);
}

#dores,
#tratamento {
    max-width: 1100px;
}

#dores {
    padding-top: 36px;
}

#dores h2,
#tratamento h2 {
    text-align: center;
}

#tratamento h2 {
    font-size: clamp(2.25rem, 4vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 34px;
}

#tratamento h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    margin: 18px auto 0;
    background-color: var(--dourado);
}

#dores .dores-cabecalho h2 {
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 1;
    margin-bottom: 18px;
}

#dores .dores-cabecalho h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    margin: 18px auto 0;
    background-color: var(--dourado);
}

#dores .grade-cards,
#tratamento .grade-cards {
    grid-template-columns: repeat(6, 1fr);
}

#dores .card,
#tratamento .card {
    grid-column: span 2;
}

#dores .card:nth-child(4),
#tratamento .card:nth-child(4) {
    grid-column: 2 / 4;
}

#dores .card:nth-child(5),
#tratamento .card:nth-child(5) {
    grid-column: 4 / 6;
}

#tratamento .lista-tratamento {
    margin-bottom: 34px;
}

#tratamento .botao {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Sobre */
#sobre {
    max-width: 1100px;
}

.sobre-conteudo {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    background-color: var(--branco-puro);
    border: 1px solid var(--cinza-borda);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 32px rgba(9, 69, 108, 0.08);
}

.sobre-imagem {
    position: relative;
    max-width: 240px;
    justify-self: center;
}

.sobre-imagem .foto-perfil {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0 auto;
    border: 4px solid var(--azul-claro);
    border-radius: 35%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-imagem .foto-perfil:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(9, 69, 108, 0.2);
}

#sobre p {
    margin-bottom: 15px;
}

/* Depoimentos */
#depoimentos {
    max-width: 1100px;
    text-align: center;
    overflow: hidden;
}

.depoimentos-carrossel,
.depoimentos-carrosel {
    width: 100%;
    max-width: 980px;
    height: 380px;
    margin: 50px auto 0;
    overflow: hidden;
    position: relative;
}

.depoimentos-grade {
    width: 100%;
    height: 100%;
    position: relative;
}

.depoimento-card {
    width: min(430px, 76%);
    min-height: 250px;
    background-color: var(--branco-puro);
    border: 1px solid var(--cinza-borda);
    border-radius: 22px;
    padding: 30px 26px;
    text-align: left;
    box-shadow: 0 10px 28px rgba(9, 69, 108, 0.08);
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.6s ease;
}

.depoimento-card.ativo {
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 18px 40px rgba(9, 69, 108, 0.16);
}

.depoimento-card.ativo:hover {
    transform: translate(-50%, -52%) scale(1);
    box-shadow: 0 22px 44px rgba(9, 69, 108, 0.18);
}

.depoimento-card.anterior {
    opacity: 0.45;
    z-index: 2;
    transform: translate(-115%, -50%) scale(0.82);
}

.depoimento-card.proximo {
    opacity: 0.45;
    z-index: 2;
    transform: translate(15%, -50%) scale(0.82);
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 22px;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(189, 213, 225, 0.75);
    line-height: 1;
}

.depoimento-card p {
    position: relative;
    color: var(--cinza-texto);
    font-size: 1.04rem;
    line-height: 1.7;
    margin-bottom: 22px;
    z-index: 1;
}

.depoimento-card strong {
    color: var(--azul-escuro);
    font-size: 0.96rem;
}

/* Como funciona */
#como-funciona {
    max-width: 1100px;
    text-align: center;
}

.processo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    justify-items: center;
    margin: 30px 0;
}

.passo {
    width: 100%;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    background: var(--branco-puro);
    border: 1px solid rgba(189, 213, 225, 0.65);
    border-radius: 22px;
    padding: 30px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 18px 45px rgba(9, 69, 108, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.passo h3,
.passo p {
    position: relative;
    z-index: 1;
}

.passo:hover {
    transform: translateY(-6px);
    border-color: rgba(9, 69, 108, 0.18);
    box-shadow: 0 20px 42px rgba(9, 69, 108, 0.14);
}

.passo h3 {
    color: var(--azul-escuro);
    font-size: 1.12rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.passo p {
    color: var(--cinza-texto);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* Modalidade */
#modalidade {
    max-width: 1100px;
    text-align: center;
}

.modalidade-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.modalidade-card {
    background-color: var(--branco-puro);
    border: 1px solid var(--cinza-borda);
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: 0 10px 28px rgba(9, 69, 108, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modalidade-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(9, 69, 108, 0.14);
}

.modalidade-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background-color: rgba(189, 213, 225, 0.45);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.modalidade-card h3 {
    color: var(--azul-escuro);
    font-size: 1.28rem;
    margin-bottom: 12px;
}

.modalidade-card p {
    color: var(--cinza-texto);
    font-size: 1.04rem;
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto;
}

/* FAQ */
#faq {
    max-width: 900px;
}

#faq h2 {
    text-align: center;
}

#faq details {
    background-color: var(--branco-puro);
    border: 1px solid var(--cinza-borda);
    border-radius: 16px;
    margin-bottom: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(9, 69, 108, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#faq details:hover {
    box-shadow: 0 4px 12px rgba(9, 69, 108, 0.08);
}

#faq details[open] {
    border-color: rgba(9, 69, 108, 0.35);
    box-shadow: 0 14px 34px rgba(9, 69, 108, 0.12);
}

#faq summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--azul-escuro);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#faq summary::-webkit-details-marker {
    display: none;
}

#faq summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    background-color: rgba(189, 213, 225, 0.45);
    color: var(--azul-escuro);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#faq details[open] summary::after {
    content: "x";
    background-color: var(--azul-escuro);
    color: var(--branco-puro);
    transform: rotate(180deg);
}

#faq details p {
    padding: 18px 22px 22px;
    margin: 0;
    color: var(--cinza-texto);
    font-size: 1.02rem;
    line-height: 1.7;
    border-top: 1px solid var(--cinza-borda);
}

/* Contato */
#contato {
    max-width: 1100px;
    text-align: center;
}

.contato-cabecalho {
    max-width: 620px;
    margin: 0 auto 30px;
}

.contato-cabecalho p {
    color: var(--cinza-texto);
}

.contato-grade {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.formulario-contato {
    background-color: var(--branco-puro);
    border: 1px solid var(--cinza-borda);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 12px 32px rgba(9, 69, 108, 0.08);
    text-align: left;
}

.formulario-whatsapp {
    width: 100%;
    max-width: none;
    margin: 0;
}

.campo-formulario {
    margin-bottom: 18px;
}

.campo-formulario label {
    display: block;
    color: var(--azul-escuro);
    font-weight: 700;
    margin-bottom: 8px;
}

.campo-formulario input,
.campo-formulario textarea {
    width: 100%;
    border: 1px solid var(--cinza-borda);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1.04rem;
    color: var(--texto-escuro);
    background-color: var(--fundo-leve);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.campo-formulario textarea {
    min-height: 150px;
    resize: vertical;
}

.campo-formulario input:focus,
.campo-formulario textarea:focus {
    border-color: var(--azul-escuro);
    box-shadow: 0 0 0 3px rgba(9, 69, 108, 0.12);
}

.formulario-contato .botao {
    cursor: pointer;
}

.instagram-contato {
    margin-top: 0;
    background-color: var(--branco-puro);
    border: 1px solid var(--cinza-borda);
    border-radius: 24px;
    padding: 34px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(9, 69, 108, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.instagram-contato h3 {
    color: var(--azul-escuro);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.instagram-contato p {
    color: var(--cinza-texto);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 18px;
}

.instagram-contato a {
    background-color: var(--azul-escuro);
    color: var(--branco-puro);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 8px;
}

.instagram-contato .instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.instagram-contato a:hover {
    text-decoration: underline;
}

/* CTA final */
#cta-final {
    max-width: 1100px;
    margin: 64px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background-color: var(--fundo-creme);
    border: 1px solid rgba(189, 213, 225, 0.75);
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(9, 69, 108, 0.14);
    overflow: hidden;
}

.cta-final-conteudo {
    max-width: none;
    margin: 0;
    padding: 68px 42px;
    position: relative;
    z-index: 1;
}

.cta-final-imagem {
    min-height: 430px;
    overflow: hidden;
    background-color: var(--fundo-creme);
}

.cta-final-imagem img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#cta-final .etiqueta {
    background-color: rgba(9, 69, 108, 0.08);
    color: var(--azul-escuro);
    border: 1px solid rgba(9, 69, 108, 0.12);
}

#cta-final h2 {
    color: var(--azul-escuro);
    max-width: 480px;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

#cta-final p {
    max-width: 460px;
    margin: 0 0 30px;
    color: var(--cinza-texto);
    font-size: 1.12rem;
    line-height: 1.72;
}

#cta-final .botao {
    margin-top: 6px;
}

#cta-final .botao-claro {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dourado), var(--dourado));
    color: var(--branco-puro);
    box-shadow: 0 18px 40px rgba(9, 69, 108, 0.18);
}

#cta-final .botao-claro:hover {
    background: var(--azul-claro);
    color: var(--azul-escuro);
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(9, 69, 108, 0.24);
}

/* Rodape */
footer {
    background-color: var(--azul-escuro);
    color: var(--branco-puro);
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    position: relative;
}

footer p,
footer a {
    position: relative;
    z-index: 1;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.footer-instagram {
    color: var(--azul-claro);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-instagram:hover {
    text-decoration: underline;
}

.footer-instagram .instagram-icone {
    width: 22px;
    height: 22px;
}

.link-rodape {
    color: var(--azul-claro);
    font-weight: 700;
    text-decoration: none;
}

.link-rodape:hover {
    text-decoration: underline;
}

.footer-contatos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.footer-contatos a {
    color: var(--azul-claro);
    font-weight: 700;
    text-decoration: none;
}

.footer-contatos a:hover {
    text-decoration: underline;
}

.credito-site {
    margin-top: 14px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.62);
}

.credito-site a {
    color: var(--azul-claro);
    text-decoration: none;
    font-weight: 700;
}

.credito-site a:hover {
    text-decoration: underline;
}

/* WhatsApp fixo */
.whatsapp-fixo {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(18, 140, 126, 0.35);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulsarWhatsapp 2.4s ease-in-out infinite;
    overflow: hidden;
}

.whatsapp-fixo:hover {
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.48);
}

.whatsapp-fixo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

/* Responsividade */
@media (max-width: 900px) {
    #dores .grade-cards,
    #tratamento .grade-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    #dores .card,
    #tratamento .card,
    #dores .card:nth-child(4),
    #dores .card:nth-child(5),
    #tratamento .card:nth-child(4),
    #tratamento .card:nth-child(5) {
        grid-column: auto;
    }

    #dores .card:last-child,
    #tratamento .card:last-child {
        grid-column: 1 / 3;
        max-width: 420px;
    }

    .processo {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    body::before {
        background-size: min(360px, 86vw);
        opacity: 0.08;
    }

    header {
        background-color: var(--fundo-creme);
        color: var(--azul-escuro);
        padding-top: 78px;
        text-align: left;
    }

    header::before {
        content: "";
        display: block;
        width: 100%;
        height: 78px;
        background-color: var(--azul-escuro);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
    }

    header::after {
        display: none;
    }

    .logo-topo {
        top: 10px;
        left: 20px;
        width: 72px;
        z-index: 6;
    }

    .botao-menu {
        width: 48px;
        height: 48px;
        margin: 0;
        border: 1px solid rgba(255, 255, 255, 0.28);
        background-color: rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 7;
        box-shadow: 0 10px 24px rgba(9, 69, 108, 0.12);
    }

    .botao-menu span {
        width: 24px;
        height: 2px;
        background-color: var(--branco-puro);
        border-radius: 999px;
    }

    .menu-topo {
        display: none;
        position: absolute;
        top: 78px;
        right: 20px;
        width: min(270px, calc(100% - 40px));
        min-height: auto;
        padding: 18px;
        margin: 0;
        background-color: rgba(9, 69, 108, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 14px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 14px;
        z-index: 6;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    }

    .menu-topo.aberto {
        display: flex;
    }

    .menu-topo a {
        width: 100%;
        min-height: 38px;
        height: auto;
        justify-content: flex-start;
        color: var(--branco-puro);
        font-size: 1rem;
    }

    .menu-topo .instagram-menu {
        width: 38px;
        min-height: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
    }

    .menu-cta {
        width: 100%;
        min-width: 0;
        height: 46px;
        padding: 0 18px;
        justify-content: center !important;
    }

    .hero {
        max-width: 100%;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-texto {
        width: 100%;
        max-width: 100%;
        padding: 38px 24px 34px;
        margin-left: 0;
        text-align: center;
    }

    .hero-etiqueta {
        font-size: 0.86rem;
        letter-spacing: 0.08em;
    }

    .detalhe-linha,
    .detalhe-folhas {
        width: min(220px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    header h1 {
        font-size: clamp(2.35rem, 11vw, 3.2rem);
        line-height: 0.98;
    }

    header h2,
    header h3 {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
        line-height: 1.05;
    }

    header p {
        max-width: 340px;
        font-size: 1.08rem;
        margin-left: auto;
        margin-right: auto;
    }

    .botao-whatsapp-hero {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        padding: 14px 18px;
        font-size: 0.98rem;
    }

    .hero-beneficios {
        max-width: 340px;
        margin: 34px auto 0;
        padding-top: 24px;
        flex-direction: column;
        gap: 16px;
    }

    .hero-beneficio {
        width: 100%;
    }

    .hero-imagem {
        min-height: 360px;
    }

    .hero-imagem img {
        object-position: left center;
    }

    .hero-foto-mobile {
        display: none;
    }

    .frase-transicao {
        width: calc(100% - 40px);
        margin: 22px auto 10px;
        padding: 24px 22px;
        text-align: center;
    }

    .frase-transicao p {
        font-size: 1.18rem;
    }

    .frase-transicao strong {
        font-size: 1.62rem;
    }

    #dores .grade-cards,
    #tratamento .grade-cards,
    .processo,
    .modalidade-cards {
        grid-template-columns: 1fr;
    }

    #dores .card:last-child,
    #tratamento .card:last-child,
    #dores .card:nth-child(4),
    #dores .card:nth-child(5),
    #tratamento .card:nth-child(4),
    #tratamento .card:nth-child(5) {
        grid-column: auto;
    }

    .card,
    .passo {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .sobre-conteudo {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .sobre-imagem {
        max-width: 220px;
    }

    .sobre-imagem .foto-perfil {
        max-width: 220px;
    }

    .botao {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    #tratamento .botao,
    #como-funciona .botao,
    #cta-final .botao,
    .formulario-contato .botao {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .depoimentos-carrossel,
    .depoimentos-carrosel {
        height: 400px;
        margin-top: 40px;
    }

    .depoimento-card {
        width: 82%;
        min-height: 270px;
        text-align: center;
    }

    .depoimento-card.anterior {
        transform: translate(-105%, -50%) scale(0.78);
    }

    .depoimento-card.proximo {
        transform: translate(5%, -50%) scale(0.78);
    }

    .depoimento-card::before {
        right: 50%;
        transform: translateX(50%);
        opacity: 0.45;
    }

    .depoimento-card p {
        font-size: 1rem;
    }

    .depoimento-card strong {
        display: block;
    }

    .contato-grade {
        grid-template-columns: 1fr;
    }

    .formulario-contato {
        padding: 26px 20px;
    }

    #cta-final {
        width: calc(100% - 32px);
        margin: 44px auto 0;
        display: grid;
        grid-template-columns: 1fr;
        background-color: var(--fundo-creme);
        border-radius: 24px;
    }

    .cta-final-conteudo {
        max-width: 330px;
        margin: 0 auto;
        padding: 34px 24px 38px;
        text-align: center;
        order: 2;
    }

    .cta-final-imagem {
        min-height: 320px;
        order: 1;
    }

    #cta-final h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    #cta-final p {
        font-size: 1.05rem;
    }

    .whatsapp-fixo {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
        font-size: 1.4rem;
    }
}

.menu-topo .instagram-menu,
.menu-topo .whatsapp-menu {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-topo .instagram-menu::after,
.menu-topo .whatsapp-menu::after {
    display: none;
}

.menu-topo .instagram-menu:hover,
.menu-topo .whatsapp-menu:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.menu-topo .whatsapp-menu img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}