/* =====================================================================
   STUDIO JESSICA BARROS | MASSOTERAPIA
   Folha de estilo principal — HTML/CSS/JS puro (sem frameworks)
   ---------------------------------------------------------------------
   Sumário:
   01. Variáveis (paleta, fontes, sombras, espaçamentos)
   02. Reset & base
   03. Tipografia
   04. Layout (container, seções, grids)
   05. Botões
   06. Header & navegação
   07. Menu mobile
   08. Hero (home) e Page-hero (páginas internas)
   09. Componentes de seção (eyebrow, título, intro)
   10. Cards (destaques, serviços, experiências, depoimentos, passos)
   11. Blocos split (imagem + texto)
   12. Benefícios e listas
   13. "Essa experiência é para você que..."
   14. Como funciona o agendamento
   15. FAQ expansível
   16. Galeria + filtros + lightbox
   17. Faixa de CTA
   18. Contato (info + mapa)
   19. Rodapé
   20. Botão flutuante WhatsApp & voltar ao topo
   21. Animações de revelação
   22. Responsividade
   ===================================================================== */

/* 01. VARIÁVEIS ------------------------------------------------------- */
:root {
  /* Paleta da marca */
  --rose:    #D8A7A7;   /* rosé suave */
  --nude:    #F3E7DD;   /* nude claro */
  --branco:  #FFF9F5;   /* branco quente */
  --marrom:  #6F4E45;   /* marrom suave */
  --dourado: #C9A66B;   /* dourado discreto */
  --bege:    #B88973;   /* bege profundo */
  --texto:   #3E302C;   /* texto escuro elegante */

  /* Tons derivados */
  --rose-50:  #faf1ef;
  --rose-100: #f4ddd9;
  --nude-soft: #f8efe7;
  --marrom-dark: #5a3f37;
  --texto-suave: #6b574f;
  --linha: rgba(111, 78, 69, 0.14);

  /* Tipografia */
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Sombras suaves */
  --shadow-sm: 0 4px 14px rgba(111, 78, 69, 0.08);
  --shadow:    0 10px 30px rgba(111, 78, 69, 0.12);
  --shadow-lg: 0 24px 60px rgba(111, 78, 69, 0.18);
  --shadow-gold: 0 12px 28px rgba(201, 166, 107, 0.35);

  /* Raios */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  /* Medidas */
  --container: 1180px;
  --header-h: 78px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 02. RESET & BASE --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--texto);
  background-color: var(--branco);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Bloqueia scroll quando o menu mobile está aberto */
body.no-scroll { overflow: hidden; }

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

/* Foco acessível */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--dourado);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 03. TIPOGRAFIA ----------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.18; color: var(--marrom); }
h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
p  { color: var(--texto-suave); }

.text-gold { color: var(--dourado); }
.italic { font-style: italic; }

/* 04. LAYOUT --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 70px) 0; }
.section--nude { background: var(--nude-soft); }
.section--rose { background: linear-gradient(160deg, var(--rose-50), var(--nude-soft)); }
.section--gradient { background: linear-gradient(165deg, var(--branco) 0%, var(--nude-soft) 100%); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.measure { max-width: 680px; }
.mt-1 { margin-top: 14px; } .mt-2 { margin-top: 28px; } .mt-3 { margin-top: 44px; }

/* Divisor orgânico dourado */
.divider-flower {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--dourado); margin: 6px 0 2px;
}
.divider-flower::before, .divider-flower::after {
  content: ""; height: 1px; width: 54px;
  background: linear-gradient(90deg, transparent, var(--dourado));
}
.divider-flower::after { background: linear-gradient(90deg, var(--dourado), transparent); }

/* 05. BOTÕES --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background-color 0.3s var(--ease), color 0.3s var(--ease);
  text-align: center;
  border: 1.5px solid transparent;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

/* CTA principal (WhatsApp) — dourado premium */
.btn-primary {
  background: linear-gradient(135deg, #d9bd86 0%, var(--dourado) 55%, #bb9551 100%);
  color: #3a2a23;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(201, 166, 107, 0.5); filter: brightness(1.04); }

/* Botão sólido escuro */
.btn-solid { background: var(--marrom); color: var(--branco); box-shadow: var(--shadow-sm); }
.btn-solid:hover { background: var(--marrom-dark); box-shadow: var(--shadow); }

/* Botão contorno (sobre fundo claro) */
.btn-ghost { background: transparent; color: var(--marrom); border-color: rgba(111,78,69,0.35); }
.btn-ghost:hover { background: var(--marrom); color: var(--branco); border-color: var(--marrom); }

/* Botão contorno claro (sobre fundo escuro/imagem) */
.btn-ghost-light { background: rgba(255,255,255,0.06); color: var(--branco); border-color: rgba(255,255,255,0.6); }
.btn-ghost-light:hover { background: var(--branco); color: var(--marrom); border-color: var(--branco); }

.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Ícone WhatsApp dentro de botões herda cor */
.btn .ico-wa { fill: currentColor; }

/* 06. HEADER & NAVEGAÇÃO --------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 249, 245, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linha);
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), height 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 249, 245, 0.97);
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; line-height: 1.05; }
.logo__mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--marrom), var(--bege));
  display: grid; place-items: center;
  color: var(--branco); font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; border: 1.5px solid var(--dourado);
  flex: none;
}
.logo__text { display: flex; flex-direction: column; }
.logo__name { font-family: var(--serif); font-size: 1.18rem; color: var(--marrom); font-weight: 600; }
.logo__tag { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dourado); }

/* Navegação desktop */
.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  position: relative; font-size: 0.88rem; font-weight: 500;
  color: var(--texto); letter-spacing: 0.02em; padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--dourado); transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--marrom); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Botão hamburguer (mobile) */
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  position: relative; background: rgba(111,78,69,0.06);
}
.nav-toggle span {
  position: absolute; left: 13px; width: 20px; height: 2px; border-radius: 2px;
  background: var(--marrom); transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* 07. MENU MOBILE ---------------------------------------------------- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 1098;
  background: rgba(62, 48, 44, 0.45);
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
  backdrop-filter: blur(2px);
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 1099;
  width: min(86vw, 360px); height: 100dvh;
  background: linear-gradient(170deg, var(--branco), var(--nude-soft));
  box-shadow: -20px 0 50px rgba(111,78,69,0.18);
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
  padding: 26px 28px 32px;
  overflow-y: auto;
}
body.nav-open .mobile-menu { transform: translateX(0); }

.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-menu__close {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(111,78,69,0.07);
  display: grid; place-items: center; color: var(--marrom); font-size: 1.3rem;
}
.mobile-menu__close:hover { background: var(--rose-100); }

.mobile-nav { display: flex; flex-direction: column; margin-top: 6px; }
.mobile-nav a {
  font-family: var(--serif); font-size: 1.35rem; color: var(--marrom);
  padding: 15px 0; border-bottom: 1px solid var(--linha);
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.mobile-nav a::after { content: "›"; color: var(--dourado); opacity: 0.7; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--bege); padding-left: 8px; }

.mobile-menu__footer { margin-top: auto; padding-top: 24px; }
.mobile-menu__social { display: flex; gap: 14px; margin-top: 18px; justify-content: center; }
.mobile-menu__social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--branco); border: 1px solid var(--linha); color: var(--marrom);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.mobile-menu__social a:hover { background: var(--rose-100); transform: translateY(-3px); }
.mobile-menu__social svg { width: 20px; height: 20px; }

/* 08. HERO (HOME) ---------------------------------------------------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 70px;
  color: var(--branco); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  /* Overlay para legibilidade — atmosfera acolhedora, não fria */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(62,48,44,0.72) 0%, rgba(111,78,69,0.5) 45%, rgba(184,137,115,0.32) 100%);
}
.hero__content { max-width: 720px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--nude); margin-bottom: 22px; font-weight: 500;
}
.hero__eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--dourado); }
.hero h1 { color: var(--branco); margin-bottom: 8px; }
.hero h1 em { color: var(--rose); font-style: italic; }
.hero__lead {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--nude); margin: 14px 0 18px;
}
.hero__text { color: rgba(255,249,245,0.9); max-width: 560px; font-size: 1.02rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero__micro {
  margin-top: 22px; font-size: 0.85rem; color: rgba(255,249,245,0.78);
  display: flex; align-items: center; gap: 9px;
}
.hero__micro svg { width: 17px; height: 17px; color: var(--dourado); flex: none; }

/* Page-hero (páginas internas) */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 56px) 0 56px;
  background: linear-gradient(160deg, var(--rose-50), var(--nude-soft) 70%);
  text-align: center; overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0;
}
.page-hero::before { width: 320px; height: 320px; background: rgba(216,167,167,0.18); top: -120px; right: -90px; }
.page-hero::after  { width: 240px; height: 240px; background: rgba(201,166,107,0.14); bottom: -110px; left: -70px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 0.76rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--dourado); font-weight: 600; margin-bottom: 14px;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { margin-top: 22px; font-size: 0.8rem; color: var(--texto-suave); }
.breadcrumb a:hover { color: var(--bege); }
.breadcrumb span { color: var(--dourado); margin: 0 8px; }

/* 09. COMPONENTES DE SEÇÃO ------------------------------------------- */
.section-head { max-width: 720px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; font-size: 0.76rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dourado); font-weight: 600; margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.04rem; }

/* 10. CARDS ---------------------------------------------------------- */
.card {
  background: var(--branco); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(201,166,107,0.16);
  padding: 34px 28px; height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* Card de destaque com ícone */
.feature { text-align: center; }
.feature__icon {
  width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--rose-100), var(--nude));
  color: var(--bege); border: 1px solid rgba(201,166,107,0.3);
}
.feature__icon svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.22rem; margin-bottom: 10px; }
.feature p { font-size: 0.96rem; }

/* Card de serviço (preview na home) */
.service-card {
  display: flex; flex-direction: column; overflow: hidden; padding: 0;
}
.service-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,249,245,0.92); color: var(--marrom);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 13px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.service-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-size: 1.22rem; margin-bottom: 8px; }
.service-card__body p { font-size: 0.95rem; flex: 1; }
.service-card__link {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 7px;
  color: var(--bege); font-weight: 600; font-size: 0.9rem; align-self: flex-start;
  transition: gap 0.25s var(--ease), color 0.25s;
}
.service-card__link:hover { gap: 12px; color: var(--marrom); }

/* Bloco de serviço detalhado (página serviços) */
.service-detail {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 0;
  background: var(--branco); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(201,166,107,0.16);
}
.service-detail:nth-child(even) .service-detail__media { order: 2; }
.service-detail__media { position: relative; min-height: 320px; }
.service-detail__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-detail__tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--dourado); color: #3a2a23; font-weight: 600; font-size: 0.78rem;
  padding: 7px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.service-detail__body { padding: clamp(28px, 4vw, 46px); }
.service-detail__body h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 6px; }
.service-detail__dur {
  display: inline-flex; align-items: center; gap: 7px; color: var(--bege);
  font-weight: 600; font-size: 0.88rem; margin-bottom: 16px;
}
.service-detail__dur svg { width: 16px; height: 16px; }
.includes { margin: 20px 0 24px; display: grid; gap: 11px; }
.includes li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--texto-suave); }
.includes li svg { width: 19px; height: 19px; color: var(--dourado); flex: none; margin-top: 2px; }
.price-note {
  display: inline-flex; align-items: center; gap: 9px; font-size: 0.86rem;
  color: var(--marrom); background: var(--nude-soft); border: 1px dashed rgba(201,166,107,0.5);
  padding: 9px 16px; border-radius: var(--radius-pill); margin-bottom: 22px;
}
.price-note svg { width: 16px; height: 16px; color: var(--dourado); }

/* 11. BLOCOS SPLIT (imagem + texto) ---------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.split__media--wide img { aspect-ratio: 5 / 4; }
.split__media::before {
  /* moldura dourada deslocada */
  content: ""; position: absolute; inset: 16px -16px -16px 16px;
  border: 1.5px solid var(--dourado); border-radius: var(--radius-lg); z-index: -1; opacity: 0.6;
}
.split__badge {
  position: absolute; bottom: 22px; left: -18px;
  background: var(--branco); border-radius: var(--radius); padding: 16px 22px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.split__badge svg { width: 34px; height: 34px; color: var(--dourado); flex: none; }
.split__badge strong { display: block; color: var(--marrom); font-family: var(--serif); font-size: 1.1rem; }
.split__badge span { font-size: 0.8rem; color: var(--texto-suave); }
.split__content h2 { margin-bottom: 18px; }
.split__content p + p { margin-top: 16px; }

/* 12. BENEFÍCIOS E LISTAS -------------------------------------------- */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 30px; }
.benefit {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--branco); padding: 20px 22px; border-radius: var(--radius);
  border: 1px solid rgba(201,166,107,0.16); box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.benefit:hover { transform: translateX(5px); }
.benefit__icon {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--rose-100), var(--nude));
  display: grid; place-items: center; color: var(--bege);
}
.benefit__icon svg { width: 23px; height: 23px; }
.benefit h3 { font-size: 1.05rem; margin-bottom: 3px; font-family: var(--sans); font-weight: 600; color: var(--marrom); }
.benefit p { font-size: 0.88rem; margin: 0; }

/* Lista com check dourado */
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--texto-suave); }
.checklist li svg { width: 22px; height: 22px; color: var(--dourado); flex: none; margin-top: 2px; }

/* 13. "ESSA EXPERIÊNCIA É PARA VOCÊ QUE..." -------------------------- */
.foryou { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.foryou__card {
  background: linear-gradient(160deg, var(--marrom), var(--bege));
  color: var(--branco); border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 48px);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.foryou__card::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,249,245,0.07); top: -80px; right: -60px;
}
.foryou__card h2 { color: var(--branco); margin-bottom: 22px; position: relative; }
.foryou__card .checklist li { color: rgba(255,249,245,0.92); position: relative; }
.foryou__card .checklist li svg { color: var(--dourado); }

/* 14. COMO FUNCIONA O AGENDAMENTO ------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative; background: var(--branco); border-radius: var(--radius);
  padding: 38px 24px 28px; text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,166,107,0.16);
}
.step__num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dourado), var(--bege));
  color: var(--branco); display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.25rem; box-shadow: var(--shadow-sm);
}
.step__icon { color: var(--bege); margin-bottom: 12px; }
.step__icon svg { width: 30px; height: 30px; margin: 0 auto; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; }

/* 15. FAQ ------------------------------------------------------------ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--branco); border: 1px solid rgba(201,166,107,0.2);
  border-radius: var(--radius); margin-bottom: 14px; overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s;
}
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(201,166,107,0.45); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; text-align: left; font-family: var(--serif);
  font-size: 1.1rem; color: var(--marrom); font-weight: 600;
}
.faq-q__icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--nude-soft); color: var(--bege); transition: transform 0.35s var(--ease), background 0.3s;
  position: relative;
}
.faq-q__icon::before, .faq-q__icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.faq-q__icon::before { width: 13px; height: 2px; }
.faq-q__icon::after { width: 2px; height: 13px; transition: transform 0.35s var(--ease); }
.faq-item.open .faq-q__icon { background: var(--dourado); color: var(--branco); }
.faq-item.open .faq-q__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a__inner { padding: 0 26px 24px; color: var(--texto-suave); font-size: 0.98rem; }

/* 16. GALERIA + FILTROS + LIGHTBOX ----------------------------------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 500;
  color: var(--texto-suave); background: var(--branco); border: 1px solid var(--linha);
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--dourado); color: var(--marrom); }
.filter-btn.active { background: var(--marrom); color: var(--branco); border-color: var(--marrom); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(62,48,44,0.5), transparent 55%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.gallery-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px; color: var(--branco); font-family: var(--serif); font-size: 1.05rem;
  transform: translateY(10px); opacity: 0; transition: all 0.35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .gallery-item__cap { transform: translateY(0); opacity: 1; }
.gallery-item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center;
  background: rgba(46, 34, 30, 0.92); padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: var(--nude); font-family: var(--serif); font-style: italic; }
.lightbox__btn {
  position: absolute; color: var(--branco); width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.12); display: grid; place-items: center; font-size: 1.6rem;
  transition: background 0.25s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,0.25); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }

/* 17. FAIXA DE CTA --------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; color: var(--branco); text-align: center; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(62,48,44,0.85), rgba(111,78,69,0.7));
}
.cta-band .container { position: relative; z-index: 1; padding-top: clamp(60px,8vw,100px); padding-bottom: clamp(60px,8vw,100px); }
.cta-band h2 { color: var(--branco); margin-bottom: 16px; }
.cta-band h2 em { color: var(--rose); font-style: italic; }
.cta-band p { color: rgba(255,249,245,0.9); max-width: 600px; margin: 0 auto 30px; font-size: 1.06rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* CTA simples sem imagem (faixa rosé) */
.cta-soft { background: linear-gradient(135deg, var(--rose-50), var(--nude-soft)); text-align: center; }
.cta-soft h2 { margin-bottom: 16px; }
.cta-soft p { max-width: 600px; margin: 0 auto 28px; }

/* 18. CONTATO (info + mapa) ------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start; background: var(--branco);
  padding: 26px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,166,107,0.16); transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card__icon {
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--rose-100), var(--nude));
  display: grid; place-items: center; color: var(--bege);
}
.contact-card__icon svg { width: 25px; height: 25px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 4px; font-family: var(--sans); font-weight: 600; color: var(--marrom); }
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--texto-suave); }
.contact-card a:hover { color: var(--bege); }

.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 4px solid var(--branco); height: 100%; min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* 19. RODAPÉ --------------------------------------------------------- */
.site-footer { background: linear-gradient(180deg, #4f372f, var(--texto)); color: rgba(255,249,245,0.78); }
.footer-top { padding: clamp(50px, 7vw, 80px) 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .logo__name { color: var(--branco); }
.footer-brand p { color: rgba(255,249,245,0.66); font-size: 0.92rem; margin-top: 18px; max-width: 320px; }
.footer-col h4 {
  color: var(--branco); font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 20px; font-weight: 600;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: rgba(255,249,245,0.72); transition: color 0.25s, padding-left 0.25s; }
.footer-col a:hover { color: var(--dourado); padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--dourado); flex: none; margin-top: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: var(--branco); transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--dourado); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  border-top: 1px solid rgba(255,249,245,0.12); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,249,245,0.6);
}
.footer-bottom .heart { color: var(--rose); }

/* 20. BOTÃO FLUTUANTE WHATSAPP & VOLTAR AO TOPO ---------------------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1100;
  display: inline-flex; align-items: center; gap: 0;
  background: linear-gradient(135deg, #d9bd86, var(--dourado) 60%, var(--bege));
  color: #fff; border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(111,78,69,0.4); padding: 0; height: 60px;
  overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 38px rgba(111,78,69,0.5); }
.wa-float__icon { width: 60px; height: 60px; display: grid; place-items: center; flex: none; }
.wa-float__icon svg { width: 30px; height: 30px; fill: #fff; }
.wa-float__label {
  max-width: 0; white-space: nowrap; font-weight: 600; font-size: 0.92rem;
  overflow: hidden; transition: max-width 0.4s var(--ease), padding 0.4s var(--ease);
}
.wa-float:hover .wa-float__label { max-width: 220px; padding-right: 24px; }
/* Anel pulsante */
.wa-float::before {
  content: ""; position: absolute; left: 6px; top: 6px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--dourado); z-index: -1; animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

.to-top {
  position: fixed; right: 26px; bottom: 94px; z-index: 1090;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--marrom); color: var(--branco); display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: all 0.35s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--marrom-dark); }
.to-top svg { width: 20px; height: 20px; }

/* 21. ANIMAÇÕES DE REVELAÇÃO ----------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* Selos de reconhecimento */
.badges { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.badge-seal {
  display: flex; align-items: center; gap: 14px; background: var(--branco);
  border: 1px solid rgba(201,166,107,0.4); border-radius: var(--radius);
  padding: 16px 24px; box-shadow: var(--shadow-sm);
}
.badge-seal__icon {
  width: 48px; height: 48px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--dourado), var(--bege)); color: var(--branco);
}
.badge-seal__icon svg { width: 26px; height: 26px; }
.badge-seal strong { display: block; color: var(--marrom); font-family: var(--serif); font-size: 1.05rem; }
.badge-seal span { font-size: 0.8rem; color: var(--texto-suave); }

/* Quote / depoimento */
.quote-card { position: relative; }
.quote-card__mark { font-family: var(--serif); font-size: 3.2rem; line-height: 0.6; color: var(--dourado); opacity: 0.5; }
.quote-card p { font-size: 1rem; color: var(--texto); font-style: italic; margin: 10px 0 18px; }
.quote-card__stars { color: var(--dourado); display: flex; gap: 3px; margin-bottom: 12px; }
.quote-card__stars svg { width: 18px; height: 18px; }
.quote-card__author { display: flex; align-items: center; gap: 12px; }
.quote-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--bege)); color: var(--branco);
  font-family: var(--serif); font-size: 1.1rem;
}
.quote-card__author strong { color: var(--marrom); font-size: 0.95rem; display: block; }
.quote-card__author span { font-size: 0.8rem; color: var(--texto-suave); }

/* Faixa de selos topo (sob hero) */
.trust-strip { background: var(--marrom); color: rgba(255,249,245,0.85); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: center; align-items: center; padding: 18px 24px; }
.trust-strip__item { display: inline-flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.trust-strip__item svg { width: 20px; height: 20px; color: var(--dourado); }

/* Pílula informativa (preço pelo WhatsApp) */
.info-pill {
  display: inline-flex; align-items: center; gap: 10px; background: var(--nude-soft);
  border: 1px solid rgba(201,166,107,0.4); border-radius: var(--radius-pill);
  padding: 11px 22px; font-size: 0.9rem; color: var(--marrom);
}
.info-pill svg { width: 18px; height: 18px; color: var(--dourado); flex: none; }

/* 22. RESPONSIVIDADE ------------------------------------------------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail__media { order: 0; }
  .service-detail__media { min-height: 260px; aspect-ratio: 16/10; }
}

@media (max-width: 860px) {
  .nav { display: none; }            /* esconde nav desktop */
  .nav-toggle { display: block; }    /* mostra hamburguer */
  .split, .foryou { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .split__media { max-width: 460px; margin: 0 auto; }
  .split__media::before { inset: 12px -12px -12px 12px; }
  .foryou__card { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --header-h: 68px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: 88vh; }
  .hero__actions .btn, .cta-band__actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .split__badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .section { padding: 56px 0; }
  .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; }
  .wa-float__label { display: none; }   /* mantém só o ícone no mobile */
}

@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .logo__tag { display: none; }
}

/* Acessibilidade: respeita preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* Impressão básica */
@media print {
  .site-header, .wa-float, .to-top, .nav-toggle, .mobile-menu, .nav-overlay { display: none !important; }
}
