/*
  PVB Estética — folha de estilo principal.

  A paleta vem do próprio espaço de atendimento da Paula: paredes em rosa
  empoeirado (dusty rose), teto e marcenaria em creme, detalhes em latão/dourado
  champanhe e a luz quente do espelho de LED. Tudo aqui é claro, quente e calmo —
  o oposto de um site clínico frio.

  Motivo recorrente: o ARCO. O espelho do espaço tem topo arredondado, e essa
  silhueta se repete nas fotos, nos cards de protocolo e nos selos.
*/

:root {
    /* Rosa empoeirado — a parede */
    --rose-50:  #FBF4F1;
    --rose-100: #F5E7E1;
    --rose-200: #EAD2C9;
    --rose-300: #D9B3A7;
    --rose-400: #C79C8E;
    --rose-500: #B08578;
    --rose-700: #7D5A50;

    /* Creme — o teto e a marcenaria */
    --cream:    #FDFAF6;
    --cream-2:  #F8F2EA;
    --white:    #FFFFFF;

    /* Latão / dourado champanhe — luminária, prateleiras, lettering */
    --gold-200: #EEDCBB;
    --gold-300: #E0C79A;
    --gold-500: #C2A15F;
    --gold-600: #AE8C4C;
    --gold-700: #92733B;

    /* Tinta quente */
    --ink:      #3B322E;
    --ink-2:    #5A4C45;
    --ink-mute: #8A7A71;

    --line:      rgba(59, 50, 46, 0.10);
    --line-soft: rgba(59, 50, 46, 0.06);
    --surface:   rgba(255, 255, 255, 0.72);

    /* Sombras quentes — nunca cinza puro */
    --shadow-sm: 0 2px 10px rgba(125, 90, 80, 0.07);
    --shadow-md: 0 10px 34px rgba(125, 90, 80, 0.11);
    --shadow-lg: 0 26px 70px rgba(125, 90, 80, 0.16);

    /* Cantos arredondados das imagens e selos */
    --radius-img: 28px;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Atmosfera: a luz quente do espelho, difusa atrás de tudo. */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(60rem 40rem at 78% -8%,  rgba(224, 199, 154, 0.36), transparent 62%),
        radial-gradient(52rem 44rem at 6%  22%,  rgba(217, 179, 167, 0.30), transparent 60%),
        radial-gradient(56rem 46rem at 92% 82%,  rgba(234, 210, 201, 0.34), transparent 62%),
        linear-gradient(180deg, var(--cream) 0%, var(--rose-50) 58%, var(--cream-2) 100%);
    z-index: -2;
}

/* Grão finíssimo: tira o "digital" da tela e aquece os gradientes. */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.32;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    z-index: -1;
}

::selection { background: var(--rose-200); color: var(--ink); }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------------------------------------------------------------- tipografia */

h1, h2, h3, .serif {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.14;
}

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 1.1rem;
}

/*
  Os rotulos nao levam mais tracinhos decorativos nas pontas: so o texto.
  (A classe .eyebrow-plain deixou de ser necessaria e saiu do HTML.)
*/

/* --------------------------------------------------------------------- navegação */

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    background: rgba(253, 250, 246, 0.82);
    border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.05rem 2rem;
    max-width: 1160px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}

.nav-brand .monogram {
    /* monograma PVB tracado do logotipo real (900x571, proporcao 1.58:1) */
    width: 44px;
    height: auto;
    flex-shrink: 0;
}

.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }

/* Mesma tipografia do logotipo: geometrica, leve, caixa alta e bem espacada. */
.nav-brand-name {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.19em;
    white-space: nowrap;
}

.nav-brand-sub {
    font-size: 0.54rem;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 2.1rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: var(--ink-2);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.25s var(--ease);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 1px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 1.4rem; }

@media (max-width: 900px) {
    .nav-links { display: none; }
}

/* ------------------------------------------------------------------- botões */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.92rem 1.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
                background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
    background: linear-gradient(135deg, var(--rose-500) 0%, var(--rose-400) 100%);
    color: var(--white);
    box-shadow: 0 8px 26px rgba(176, 133, 120, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(176, 133, 120, 0.42);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    color: var(--white);
    box-shadow: 0 8px 26px rgba(174, 140, 76, 0.30);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(174, 140, 76, 0.40);
}

.btn-ghost {
    color: var(--ink);
    border-color: var(--rose-300);
    background: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
    background: var(--white);
    border-color: var(--gold-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm { padding: 0.62rem 1.25rem; font-size: 0.8rem; }

/* --------------------------------------------------------------------- hero */

.hero {
    position: relative;
    padding: 5.5rem 0 6rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
}

.hero-copy { max-width: 34rem; }

.hero h1 {
    font-size: clamp(3rem, 6.4vw, 4.9rem);
    font-weight: 300;
    line-height: 1.03;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--rose-500);
}

.hero .tagline {
    font-size: 1.06rem;
    color: var(--ink-2);
    margin-bottom: 2.3rem;
    max-width: 30rem;
}

.hero-cta {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

/* Selos de confiança logo abaixo do CTA */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 2.6rem;
    padding-top: 1.7rem;
    border-top: 1px solid var(--line-soft);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.trust-value {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.trust-value .stars { display: inline-flex; gap: 1px; }
.trust-value .stars svg { width: 13px; height: 13px; color: var(--gold-500); }

.trust-label {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/*
  O logotipo agora tem fundo transparente, entao nao leva moldura, sombra nem halo:
  ele assenta direto sobre o creme da pagina. O letreiro foi recolorido para tinta
  escura na propria imagem, porque no arquivo original ele e branco e sumiria aqui.
*/
.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    width: 100%;
    /*
      320px mantem o letreiro do mesmo tamanho que tinha no logotipo com fundo
      (365 de 510px exibidos a 430px = 308px na tela). O PNG tem 377px nativos,
      entao aqui ele so reduz um pouco, sem nunca ser ampliado: ampliar era o que
      deixava a imagem borrada.
    */
    max-width: 320px;
    height: auto;
    display: block;
}

.arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*
      A foto e 2:3 e a moldura e quadrada, entao 33% da altura e descartada. Com o
      padrao (center) o corte tira metade de cima e metade de baixo, o que cortava a
      cabeca da Paula. Puxando o enquadramento para 15% o rosto fica no terco
      superior, com folga acima da cabeca.
    */
    object-position: 50% 15%;
    display: block;
}

/* Placeholder enquanto não há foto: um arco em degradê com o monograma. */
.arch-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    padding: 2rem;
}

.arch-placeholder .monogram { width: 86px; height: auto; opacity: 0.95; }

.arch-placeholder span {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .hero { padding: 3rem 0 4rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-copy { max-width: none; }
    .hero-logo img { max-width: 300px; }
}

/* ------------------------------------------------------------------ seções */

section { padding: 5.5rem 0; position: relative; }

.section-header { margin-bottom: 3.4rem; max-width: 42rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-header h2 {
    font-size: clamp(2.1rem, 4.4vw, 3.1rem);
    font-weight: 300;
    margin-bottom: 0.9rem;
}

.section-header h2 em { font-style: italic; color: var(--rose-500); }

.section-header p {
    color: var(--ink-2);
    font-size: 1.02rem;
}

/* Faixa creme para alternar o ritmo vertical. */
.band {
    background: linear-gradient(180deg, rgba(248, 242, 234, 0) 0%, rgba(248, 242, 234, 0.85) 12%, rgba(248, 242, 234, 0.85) 88%, rgba(248, 242, 234, 0) 100%);
}

/* ------------------------------------------------------------------- sobre */

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.arch-frame {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-img);
    overflow: hidden;
    background: linear-gradient(165deg, var(--rose-200), var(--rose-400));
    box-shadow: var(--shadow-lg);
}

.about-copy h2 {
    font-size: clamp(2.1rem, 4.4vw, 3rem);
    font-weight: 300;
    margin-bottom: 0.4rem;
}

.about-role {
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 1.5rem;
}

.about-copy p {
    color: var(--ink-2);
    margin-bottom: 1.1rem;
    font-size: 1rem;
}

.about-signature {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.7rem;
    color: var(--rose-500);
    margin-top: 1.6rem;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .arch-frame { max-width: 340px; margin: 0 auto; }
}

/* ------------------------------------------------------------------ pilares */

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.pillar {
    padding: 2rem 1.7rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--line-soft);
    text-align: center;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.pillar:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.1rem;
    border-radius: 15px;
    background: linear-gradient(165deg, var(--gold-200), var(--rose-100));
    border: 1px solid var(--gold-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg { width: 22px; height: 22px; color: var(--gold-700); }

.pillar h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.pillar p { font-size: 0.9rem; color: var(--ink-mute); line-height: 1.6; }

/* ---------------------------------------------------------------- avaliações */

.reviews-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.6rem;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
}

.rating-score {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.7rem;
    font-weight: 600;
    line-height: 1;
    color: var(--ink);
}

.rating-meta { display: flex; flex-direction: column; gap: 0.25rem; }
.rating-meta .stars { display: inline-flex; gap: 2px; }
.rating-meta .stars svg { width: 15px; height: 15px; color: var(--gold-500); }

.rating-meta span {
    font-size: 0.78rem;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.review {
    position: relative;
    padding: 2.2rem 1.9rem 1.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review::before {
    content: '\201C';
    position: absolute;
    top: 0.35rem;
    left: 1.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.6rem;
    line-height: 1;
    color: var(--rose-200);
}

.review p {
    position: relative;
    font-size: 0.95rem;
    color: var(--ink-2);
    line-height: 1.68;
    margin-bottom: 1.4rem;
}

.review-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line-soft);
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--rose-300), var(--gold-300));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 500;
    flex-shrink: 0;
}

.review-name { font-size: 0.9rem; font-weight: 500; color: var(--ink); line-height: 1.3; }

.review-source {
    font-size: 0.72rem;
    color: var(--ink-mute);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.review-source svg { width: 11px; height: 11px; color: var(--gold-500); }

/* ------------------------------------------------------------------- visita */

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.info-card {
    padding: 2.4rem;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
}

.info-row {
    display: flex;
    gap: 1.1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line-soft);
}

.info-row:first-of-type { padding-top: 0; }
.info-row:last-of-type { border-bottom: 0; padding-bottom: 0; }

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--rose-50);
    border: 1px solid var(--rose-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg { width: 19px; height: 19px; color: var(--rose-500); }

.info-body { min-width: 0; flex: 1; }

.info-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 0.2rem;
}

.info-body p,
.info-body a {
    font-size: 0.97rem;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.55;
}

.info-body a { border-bottom: 1px solid transparent; transition: border-color 0.25s var(--ease), color 0.25s var(--ease); }
.info-body a:hover { color: var(--rose-500); border-bottom-color: var(--rose-300); }

/* Indicador aberto/fechado, preenchido por scripts/home.js */
.open-state {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin-top: 0.45rem;
    padding: 0.24rem 0.7rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    background: var(--rose-50);
    color: var(--ink-mute);
    border: 1px solid var(--line-soft);
}

.open-state .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink-mute);
}

.open-state.is-open {
    background: rgba(122, 156, 110, 0.12);
    color: #4E7040;
    border-color: rgba(122, 156, 110, 0.28);
}

.open-state.is-open .dot {
    background: #6E9A5C;
    box-shadow: 0 0 0 3px rgba(110, 154, 92, 0.22);
}

.map-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
    min-height: 380px;
    background: var(--rose-100);
}

.map-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.82) contrast(0.96);
}

.map-actions {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .visit-grid { grid-template-columns: 1fr; }
    .map-card { min-height: 300px; }
}

/* ---------------------------------------------------------------------- faq */

.faq { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--line-soft);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.25s var(--ease);
}

.faq-q:hover { color: var(--rose-500); }

.faq-q .chev {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--rose-200);
    color: var(--rose-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}

.faq-q .chev svg { width: 13px; height: 13px; }

.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--rose-50); }

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s var(--ease);
}

.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a > div { overflow: hidden; }

.faq-a p {
    padding-bottom: 1.5rem;
    color: var(--ink-2);
    font-size: 0.97rem;
    max-width: 62ch;
}

/* ---------------------------------------------------------------------- cta */

.cta-section {
    position: relative;
    text-align: center;
    padding: 4.6rem 2.4rem;
    border-radius: 30px;
    margin: 2rem 0 5rem;
    overflow: hidden;
    background:
        radial-gradient(38rem 22rem at 50% 0%, rgba(224, 199, 154, 0.44), transparent 68%),
        linear-gradient(165deg, var(--rose-100) 0%, var(--rose-200) 100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-lg);
}

.cta-section h2 {
    font-size: clamp(2rem, 4.2vw, 2.9rem);
    font-weight: 300;
    margin-bottom: 0.9rem;
}

.cta-section h2 em { font-style: italic; color: var(--rose-700); }

.cta-section > p {
    color: var(--ink-2);
    max-width: 34rem;
    margin: 0 auto 2.2rem;
}

.cta-section .hero-cta { justify-content: center; }

.cta-note {
    margin-top: 1.6rem;
    font-size: 0.83rem;
    color: var(--ink-mute);
}

/* -------------------------------------------------------------------- rodapé */

footer {
    padding: 3.4rem 0 2.4rem;
    border-top: 1px solid var(--line-soft);
    background: rgba(248, 242, 234, 0.5);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
}

.footer-brand { max-width: 22rem; }

.footer-brand .monogram { width: 52px; height: auto; margin-bottom: 0.9rem; }

.footer-brand p {
    font-size: 0.88rem;
    color: var(--ink-mute);
    line-height: 1.65;
    margin-top: 0.5rem;
}

.footer-col h5 {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 0.9rem;
    font-weight: 500;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col a,
.footer-col li {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 0.89rem;
    transition: color 0.25s var(--ease);
}

.footer-col a:hover { color: var(--rose-500); }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.1rem; }

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--rose-200);
    background: rgba(255, 255, 255, 0.7);
    color: var(--rose-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.social-btn svg { width: 17px; height: 17px; }

.social-btn:hover {
    transform: translateY(-3px);
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line-soft);
    font-size: 0.8rem;
    color: var(--ink-mute);
}

.footer-bottom a { color: var(--ink-mute); text-decoration: none; }
.footer-bottom a:hover { color: var(--rose-500); }

.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ------------------------------------------------------- botão flutuante zap */

.wa-float {
    position: fixed;
    right: 1.3rem;
    bottom: 1.3rem;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.9);
}

.wa-float.show { opacity: 1; pointer-events: auto; transform: none; }

.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5); }

.wa-float svg { width: 27px; height: 27px; }

@media (max-width: 560px) {
    .wa-float { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
}

/* ------------------------------------------------------------ revelar/scroll */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }

/* Entrada escalonada do hero (sem depender de scroll). */
.load-in {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 1s var(--ease) forwards;
}

.load-in:nth-child(1) { animation-delay: 0.05s; }
.load-in:nth-child(2) { animation-delay: 0.14s; }
.load-in:nth-child(3) { animation-delay: 0.23s; }
.load-in:nth-child(4) { animation-delay: 0.32s; }
.load-in:nth-child(5) { animation-delay: 0.41s; }

@keyframes rise {
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .load-in { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- foco/a11y */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-600);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 0.8rem 1.4rem;
    background: var(--white);
    color: var(--ink);
    border-radius: 0 0 10px 0;
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
}

.skip-link:focus { left: 0; }

/* ------------------------------------------------------------- responsivo */

/*
  Em telas estreitas o letreiro colidia com o botao Agendar. Em vez de esconder o
  subtitulo, o botao vira so o icone do WhatsApp: a marca continua legivel por
  inteiro e sobra espaco para todo mundo. O <a> mantem aria-label, entao quem usa
  leitor de tela continua ouvindo "Agendar pelo WhatsApp".
*/
@media (max-width: 520px) {
    .nav-cta .btn-label { display: none; }
    .nav-cta {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        gap: 0;
    }
    .nav-cta svg { width: 19px; height: 19px; }
    .nav-brand .monogram { width: 38px; }
    .nav-brand-name { font-size: 0.8rem; letter-spacing: 0.12em; }
    .nav-brand-sub { font-size: 0.46rem; letter-spacing: 0.12em; }
}

/*
  Os dois botoes do topo ficam SEMPRE na mesma linha, em qualquer largura. Em vez
  de empilhar, eles encolhem: padding e corpo do texto diminuem conforme aperta,
  e abaixo de 470px os rotulos trocam pelos curtos.
*/
.hero .hero-cta { flex-wrap: nowrap; }
.hero .hero-cta .btn { white-space: nowrap; }

/*
  Faixa critica: entre 901px e 1180px o hero ainda esta em DUAS colunas, entao a
  coluna de texto fica estreita (~455px em 1000px) e os botoes em tamanho cheio
  nao cabem lado a lado. Aqui eles encolhem um pouco.
*/
@media (min-width: 901px) and (max-width: 1180px) {
    .hero-cta { gap: 0.6rem; }
    .hero-cta .btn { padding: 0.85rem 1.15rem; font-size: 0.83rem; }
    .hero-cta .btn svg { width: 15px; height: 15px; }
}

@media (max-width: 760px) {
    .hero-cta { gap: 0.6rem; }
    .hero-cta .btn { padding: 0.85rem 1.1rem; font-size: 0.82rem; }
    .hero-cta .btn svg { width: 15px; height: 15px; }
}

/* Rotulo curto: so aparece quando o longo nao cabe mais. */
.btn-short { display: none; }

@media (max-width: 470px) {
    .hero-cta { gap: 0.45rem; }
    .hero-cta .btn { padding: 0.8rem 0.9rem; font-size: 0.78rem; letter-spacing: 0.02em; gap: 0.4rem; }
    .hero-cta .btn svg { width: 14px; height: 14px; }
    .hero-cta .btn-full { display: none; }
    .hero-cta .btn-short { display: inline; }
}

@media (max-width: 640px) {
    .container { padding: 0 1.35rem; }
    section { padding: 4rem 0; }
    .nav-inner { padding: 0.9rem 1.35rem; }
    .info-card { padding: 1.8rem 1.5rem; }
    .protocol { padding: 2.1rem 1.7rem 1.9rem; }
    .cta-section { padding: 3.4rem 1.5rem; border-radius: 24px; }
    .hero-trust { gap: 1.2rem; }
}

/* ------------------------------------------------------------- utilitários */
/*
  Classes pequenas que substituem atributos style="" inline. A CSP do site usa
  style-src 'self' (sem 'unsafe-inline'), então estilos inline seriam
  bloqueados pelo navegador — tudo precisa morar numa folha de estilo.
*/

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.mb-0 { margin-bottom: 0; }

.cta-row { margin-top: 2.2rem; justify-content: center; }

.footer-wordmark {
    display: block;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------- protocolos */
/*
  Os protocolos vivem em grupos que expandem (Limpeza de pele, Drenagem, Facial,
  Corporal). O grupo fechado mostra so o nome e a contagem; ao abrir, revela a
  lista com descricao e botao de agendamento.

  A animacao usa grid-template-rows: 0fr -> 1fr, que anima altura automatica sem
  precisar medir nada em JavaScript.
*/

.groups {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 860px;
    margin: 0 auto;
}

.group {
    border-radius: 22px;
    background: var(--surface);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.group:hover { border-color: var(--rose-200); }
.group.open { box-shadow: var(--shadow-md); border-color: var(--rose-200); }

.group-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.3rem 1.6rem;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: var(--ink);
    transition: background 0.3s var(--ease);
}

.group-head:hover { background: rgba(255, 255, 255, 0.5); }

/* Selo em arco, o mesmo motivo do espelho. */
.group-badge {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 15px;
    background: linear-gradient(165deg, var(--rose-100), var(--rose-200));
    border: 1px solid var(--rose-200);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -7px 15px rgba(224, 199, 154, 0.28);
}

.group-badge svg { width: 22px; height: 22px; color: var(--rose-700); }

.group-title { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.15rem; }

.group-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.005em;
}

.group-count {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.group-head .chev {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--rose-200);
    color: var(--rose-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}

.group-head .chev svg { width: 14px; height: 14px; }

.group.open .chev { transform: rotate(180deg); background: var(--rose-50); }

.group-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s var(--ease);
}

.group.open .group-body { grid-template-rows: 1fr; }

.group-body > div { overflow: hidden; }

.protocol-list {
    list-style: none;
    padding: 0 1.6rem 0.5rem;
    margin: 0;
}

.protocol-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 0;
    border-top: 1px solid var(--line-soft);
}

.protocol-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.2rem; }

.protocol-name {
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.protocol-desc {
    font-size: 0.9rem;
    color: var(--ink-2);
    line-height: 1.6;
}

.protocol-cta { flex-shrink: 0; }

@media (max-width: 620px) {
    .group-head { padding: 1.1rem 1.2rem; gap: 0.9rem; }
    .group-name { font-size: 1.35rem; }
    .protocol-list { padding: 0 1.2rem 0.4rem; }
    .protocol-item { flex-direction: column; align-items: stretch; gap: 0.85rem; }
    .protocol-cta { align-self: flex-start; }
}

/* ------------------------------------------------- endereco sob os botoes */
/*
  Linha discreta de endereco logo abaixo dos botoes de agendamento: quem esta
  prestes a chamar no WhatsApp ja ve onde fica o espaco, sem precisar rolar.
*/

.cta-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.83rem;
    line-height: 1.5;
    color: var(--ink-mute);
}

.cta-address svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--rose-400);
}

.cta-section .cta-address { justify-content: center; margin-top: 1.5rem; }

.groups-address {
    justify-content: center;
    margin-top: 2rem;
    text-align: center;
}
