/* ===========================================================
   Taynan Dal Bó — Nutricionista
   Site institucional · ERG Web Designer
   Paleta: branco · bege claro · dourado · verde escuro
   =========================================================== */

:root {
  /* paleta do manual — preto, off-white, bege/terracota, dourado */
  --branco: #ffffff;
  --preto: #2a2725;
  --off-white: #f4edde;
  --taupe: #887d6f;

  /* aliases (nomes antigos apontando para a paleta nova) */
  --creme: #f4edde;        /* base off-white */
  --bege: #e8dcc4;         /* bege claro (accent light) */
  --bege-escuro: #c8a775;  /* bege/terracota (accent médio) */
  --dourado: #b8944e;      /* dourado — texto/detalhe */
  --dourado-escuro: #9c7a3d; /* dourado profundo */
  --verde: #263025;        /* verde bem escuro — molduras (menu, rodapé, botões) */
  --verde-claro: #364237;  /* hover */
  --verde-sec: #887d6f;    /* taupe — seções escuras de conteúdo */
  --verde-suave: #e8dcc4;  /* bege claro — seções claras */
  --texto: #2a2725;
  --texto-suave: #6b6357;
  --linha: #e0d6c5;

  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Allura", "Brittany Signature", cursive; /* assinatura */
  --sans: "Jost", "Segoe UI", system-ui, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px -28px rgba(47, 61, 49, 0.45);
  --shadow-sm: 0 10px 28px -22px rgba(47, 61, 49, 0.4);
  --max: 1180px;
  --trans: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--verde);
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

p { color: var(--texto-suave); }

a { color: inherit; text-decoration: none; transition: color var(--trans); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: clamp(70px, 10vw, 150px) 0; }

/* ---------- utilidades ---------- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dourado-escuro);
  margin-bottom: 14px;
  display: inline-block;
}

.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head p { margin-top: 16px; }
.section-head h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}
.accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--dourado-escuro);
}
/* nome dela em script/assinatura */
.name-script {
  font-family: var(--script);
  color: var(--dourado-escuro);
  font-weight: 400;
  font-size: 1.35em;
  line-height: 1;
}

.text-center { text-align: center; }
.muted { color: var(--texto-suave); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--trans);
}

.btn-primary {
  background: var(--verde);
  color: var(--branco);
}
.btn-primary:hover {
  background: var(--verde-claro);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: var(--dourado);
  color: var(--branco);
}
.btn-gold:hover {
  background: var(--dourado-escuro);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  border-color: var(--verde);
  color: var(--verde);
}
.btn-outline:hover { background: var(--verde); color: var(--branco); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 12px 0;
  background: var(--verde);
  transition: all var(--trans);
}
.site-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 8px 24px -14px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--verde);
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bege);
  border: 1.5px solid var(--dourado);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--dourado-escuro);
  flex-shrink: 0;
}
.brand-logo {
  height: 96px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  /* cresce além da barra sem engrossar o menu */
  margin: -15px 0;
}
.site-header.scrolled .brand-logo {
  height: 78px;
  margin: -11px 0;
  transition: height var(--trans), margin var(--trans);
}
.site-footer .brand-logo { height: 62px; margin: 0; }

/* cabeçalho: apenas a logo (texto fica só no rodapé) */
.site-header .brand > span { display: none; }
.site-header .brand { gap: 0; }
.brand small {
  display: block;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--texto-suave);
  font-weight: 400;
}
/* nome "Taynan Dal Bó" com assinatura (Brittany Signature / fallback Allura) */
.site-footer .brand > span {
  font-family: var(--script);
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  font-weight: 400;
}
.site-footer .brand small {
  font-family: var(--serif);
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--dourado);
  transition: width var(--trans);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 11px 24px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: #fff;
  transition: all var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(191, 160, 106, 0.10), transparent 55%),
    #ffffff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(191, 160, 106, 0.35);
  right: -160px; top: 50%;
  transform: translateY(-50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 { margin: 18px 0 22px; }
.hero-content h1 span { color: var(--dourado-escuro); font-style: italic; }
.hero-content p { font-size: 1.1rem; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 430px;
  margin-left: auto;
}
.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.hero-visual img,
.split-visual img,
.gallery-item img {
  filter: saturate(0.94) contrast(1.03) brightness(1.02) sepia(0.05);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
/* fio dourado deslocado (moldura editorial) */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 26px -24px -26px 24px;
  border: 1.5px solid var(--dourado);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}
.split-visual { position: relative; }
.split-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(56, 50, 42, 0.28), transparent);
  pointer-events: none;
}
.placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--texto-suave);
  padding: 30px;
  gap: 10px;
}
.placeholder .ph-icon {
  font-size: 2.2rem;
  opacity: 0.55;
}
.placeholder small {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  bottom: 26px; left: -28px;
  background: var(--branco);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--linha);
}
.hero-badge strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--verde);
  display: block;
}
.hero-badge span { font-size: 0.78rem; color: var(--texto-suave); }

/* ---------- stats ---------- */
.stats {
  background: var(--verde);
  padding: 26px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat { position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -15px; top: 50%;
  width: 1px; height: 56px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}
.stat strong {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--dourado);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------- seções escuras (verde + texto claro) ---------- */
.section-dark { background: var(--verde-sec); }
.section-dark .eyebrow { color: var(--dourado); }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.82); }
.section-dark .accent { color: var(--dourado); }
.section-dark > .container > .soon-note,
.section-dark .soon-note { color: rgba(255, 255, 255, 0.72); }
.section-dark .soon-note a { color: var(--dourado); }

/* ---------- faixa em movimento (marquee) ---------- */
.marquee {
  background: var(--verde);
  overflow: hidden;
  padding: 16px 0;
  display: flex;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  color: var(--dourado);
  white-space: nowrap;
  padding: 0 26px;
  letter-spacing: 0.5px;
}
.marquee-track .sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85em;
  padding: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- cards genéricos ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: all var(--trans);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -34px rgba(56, 50, 42, 0.4);
  border-color: var(--dourado);
}
.card .ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--bege);
  color: var(--dourado-escuro);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.97rem; }
.card .price {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--dourado-escuro);
}

/* ---------- sobre / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-visual {
  aspect-ratio: 1 / 1.15;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bege-escuro), var(--bege));
  border: 1px solid var(--linha);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 { margin-bottom: 22px; }
.split-content p + p { margin-top: 16px; }

.checklist { list-style: none; margin: 26px 0 32px; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--texto);
  font-size: 0.98rem;
}
.checklist li::before {
  content: "✓";
  color: var(--dourado-escuro);
  font-weight: 700;
  background: var(--bege);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* ---------- depoimentos ---------- */
.testimonials { background: var(--bege); }
.quote {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--linha);
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--bege-escuro);
  position: absolute;
  top: 6px; left: 22px;
  line-height: 1;
}
.quote p { font-style: italic; color: var(--texto); margin: 18px 0 22px; position: relative; z-index: 1; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bege);
  border: 1px solid var(--dourado);
  display: grid; place-items: center;
  color: var(--dourado-escuro);
  font-weight: 600;
}
.quote .who strong { display: block; font-size: 0.95rem; color: var(--verde); font-family: var(--sans); }
.quote .who span { font-size: 0.82rem; color: var(--texto-suave); }

.soon-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--texto-suave);
}

/* ---------- CTA faixa ---------- */
.cta-band {
  background: #ffffff;
  color: var(--verde);
  text-align: center;
}
.cta-band .eyebrow { color: var(--verde) !important; opacity: 0.85; }
.cta-band h2 { color: var(--verde); }
.cta-band p { color: rgba(56,62,40,0.85); max-width: 520px; margin: 18px auto 32px; }
.cta-band .btn-gold {
  background: var(--verde);
  color: #fff;
}
.cta-band .btn-gold:hover { background: var(--verde-claro); }

/* ---------- page hero (interno) ---------- */
.page-hero {
  padding: 180px 0 90px;
  background:
    radial-gradient(circle at 85% 10%, rgba(191,160,106,0.10), transparent 55%),
    #ffffff;
  text-align: center;
}
.page-hero p { max-width: 560px; margin: 18px auto 0; }
.crumbs {
  font-size: 0.8rem;
  color: var(--texto-suave);
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.crumbs a:hover { color: var(--dourado-escuro); }

/* ---------- formulário ---------- */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--verde);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--linha);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--texto);
  background: var(--creme);
  transition: border-color var(--trans), background var(--trans);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--dourado);
  background: var(--branco);
  box-shadow: 0 0 0 4px rgba(191, 160, 106, 0.16);
}
.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #c2685a;
  background: #fdf4f2;
}
.field input:user-invalid:focus,
.field textarea:user-invalid:focus {
  box-shadow: 0 0 0 4px rgba(194, 104, 90, 0.14);
}
.form-note {
  font-size: 0.85rem;
  color: var(--texto-suave);
  margin-top: 6px;
}

/* ---------- contato ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info { display: grid; gap: 22px; align-content: start; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.contact-item .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--bege);
  color: var(--dourado-escuro);
  display: grid; place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--verde); font-family: var(--sans); margin-bottom: 4px; }
.contact-item span { font-size: 0.92rem; color: var(--texto-suave); }

/* ---------- loja ---------- */
.product {
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--trans);
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product .thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--bege-escuro), var(--bege));
  display: grid;
  place-items: center;
}
.product .body { padding: 26px 24px; }
.product .tag {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dourado-escuro);
  font-weight: 600;
}
.product h3 { margin: 8px 0 10px; font-size: 1.25rem; }
.product p { font-size: 0.92rem; }
.product .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}
.product .foot .price { font-family: var(--serif); font-size: 1.5rem; color: var(--dourado-escuro); }

/* ---------- portfolio ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bege-escuro), var(--bege));
  border: 1px solid var(--linha);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
}
.gallery-item {
  box-shadow: 0 0 0 1px var(--linha), inset 0 0 0 0 transparent;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(191, 160, 106, 0);
  border-radius: 8px;
  transition: border-color var(--trans);
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover { transform: scale(1.015); box-shadow: var(--shadow); }
.gallery-item:hover::after { border-color: rgba(191, 160, 106, 0.7); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item span {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde);
  background: rgba(251, 247, 240, 0.9);
  backdrop-filter: blur(2px);
  padding: 7px 18px;
  border-radius: 999px;
  z-index: 3;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--verde);
  color: rgba(255,255,255,0.72);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.site-footer h4 {
  color: var(--branco);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer .brand { color: var(--branco); margin-bottom: 18px; }
.site-footer .brand small { color: rgba(255,255,255,0.6); }
.site-footer p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-links { list-style: none; display: grid; gap: 12px; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--dourado); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--dourado); }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px -10px rgba(37,211,102,0.6);
  z-index: 90;
  transition: transform var(--trans);
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- responsivo ---------- */
@media (max-width: 880px) {
  .brand-logo { height: 76px; margin: -9px 0; }
  .site-header.scrolled .brand-logo { height: 64px; margin: -7px 0; }
}
@media (max-width: 560px) {
  .brand-logo { height: 66px; margin: -7px 0; }
  .site-header.scrolled .brand-logo { height: 58px; margin: -6px 0; }
}

@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .split { gap: 44px; }
  .split-visual { max-width: 460px; margin: 0 auto; }
  .grid-4, .grid-3, .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat + .stat::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    background: var(--verde);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px;
    gap: 26px;
    transform: translateX(110%);
    transition: transform var(--trans);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-cta { display: none; }
}

@media (max-width: 580px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .grid-4, .grid-3, .grid-2, .gallery, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .hero { text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .footer-bottom { flex-direction: column; }
}

/* ===== componentes adicionais ===== */

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 24, 20, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.lb-close {
  position: absolute;
  top: 22px; right: 28px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* voltar ao topo */
.to-top {
  position: fixed;
  right: 22px; bottom: 90px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--verde);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--trans);
  z-index: 89;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }

/* sticky CTA mobile */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 92;
  display: none;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--linha);
}
.sticky-cta .btn { flex: 1; justify-content: center; padding: 13px 10px; }

/* banner LGPD */
.lgpd {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  z-index: 95;
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(140%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.lgpd.show { transform: none; }
.lgpd p { font-size: 0.9rem; margin: 0; flex: 1 1 320px; }
.lgpd a { color: var(--dourado-escuro); font-weight: 600; }
.lgpd-acts { display: flex; gap: 10px; }
.lgpd-acts .btn { padding: 11px 22px; font-size: 0.85rem; }

/* mapa */
.map-embed {
  border: 1px solid var(--linha);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 360px; border: 0; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--verde);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--dourado-escuro);
  font-size: 1.4rem;
  transition: transform var(--trans);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; }
.faq-item .faq-body p { font-size: 0.96rem; margin: 0; }

/* página legal */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--texto-suave); font-size: 0.97rem; }
.legal ul { margin: 12px 0 12px 22px; }
.legal li { margin-bottom: 8px; }

/* botão WhatsApp no card */
.card .wa-btn,
.product .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 11px 22px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--trans);
}
.card .wa-btn:hover,
.product .wa-btn:hover { background: #1eb558; transform: translateY(-2px); }

@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
  .to-top { bottom: 150px; }
  .wa-float { bottom: 84px; }
  .lgpd { bottom: 78px; }
}

/* ===== acessibilidade ===== */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 300;
  background: var(--verde);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: top var(--trans);
}
.skip-link:focus { top: 0; outline: 3px solid var(--dourado); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--dourado);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== anamnese em etapas ===== */
.form-steps { margin-bottom: 30px; }
.form-steps-bar {
  height: 6px;
  background: var(--bege);
  border-radius: 999px;
  overflow: hidden;
}
.form-steps-bar span {
  display: block;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-escuro));
  border-radius: 999px;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-steps-label {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--texto-suave);
  letter-spacing: 0.5px;
}
.form-steps-label strong { color: var(--dourado-escuro); }
.fstep { border: 0; padding: 0; margin: 0; min-inline-size: auto; }
.fstep[hidden] { display: none; }
.form-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.form-nav .btn { padding: 13px 28px; }

/* feedback pós-envio */
.form-success {
  text-align: center;
  padding: 14px 6px;
}
.form-success[hidden] { display: none; }
.form-success-ic {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #25a557;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  animation: pop 0.5s cubic-bezier(0.22, 1.4, 0.4, 1);
}
.form-success h3 { margin-bottom: 10px; }
.form-success p { margin: 0 auto 8px; max-width: 420px; }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ===== refino visual v2 ===== */

/* (duotone do hero removido — agora usa moldura de fio dourado) */

/* motivo botânico sutil de marca */
.cta-band, .page-hero { position: relative; overflow: hidden; }
.cta-band::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 220px; height: 220px;
  background: no-repeat center/contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='none' stroke='%23bfa06a' stroke-width='1.4'><path d='M50 95 C50 60 50 35 50 8'/><path d='M50 70 C30 64 18 50 16 30 C40 32 50 48 50 70Z'/><path d='M50 56 C70 50 82 36 84 18 C60 20 50 36 50 56Z'/><path d='M50 40 C34 34 26 22 26 8 C44 12 50 26 50 40Z'/></g></svg>");
  opacity: 0.16;
  pointer-events: none;
}
.cta-band::after {
  opacity: 0.2;
  background: no-repeat center/contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='none' stroke='%23424e39' stroke-width='1.4'><path d='M50 95 C50 60 50 35 50 8'/><path d='M50 70 C30 64 18 50 16 30 C40 32 50 48 50 70Z'/><path d='M50 56 C70 50 82 36 84 18 C60 20 50 36 50 56Z'/><path d='M50 40 C34 34 26 22 26 8 C44 12 50 26 50 40Z'/></g></svg>");
}
.cta-band .container, .page-hero .container { position: relative; z-index: 1; }

/* ritmo de seções: respiro alternado */
main > section + section { position: relative; }

/* fade-in das imagens */
.fade-img { opacity: 0; transition: opacity 0.8s ease; }
.fade-img.in { opacity: 1; }

/* botões: microanimação consistente */
.btn { will-change: transform; }
.btn-primary, .btn-gold, .btn-outline { position: relative; }
.btn:active { transform: translateY(0) scale(0.985); }

/* indicador "role para baixo" no hero */
.hero::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 28px;
  width: 14px; height: 14px;
  border-right: 2px solid var(--dourado);
  border-bottom: 2px solid var(--dourado);
  transform: translateX(-50%) rotate(45deg);
  animation: scrollDown 1.8s ease-in-out infinite;
  z-index: 3;
  opacity: 0.7;
  pointer-events: none;
}
@keyframes scrollDown {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(45deg); opacity: 0.3; }
  50%      { transform: translateX(-50%) translateY(8px) rotate(45deg); opacity: 0.9; }
}
@media (max-width: 580px) { .hero::after { display: none; } }

/* ============================================================
   Refino editorial (pacote de elegância)
   ============================================================ */

/* Corpo em Jost — leve refinamento */
body {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.65;
  letter-spacing: 0.1px;
}

/* Preços e números de destaque em Cormorant Garamond */
.price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--dourado-escuro);
  letter-spacing: 0.3px;
}
.stat strong,
.hero-badge strong { font-family: var(--serif); }

/* Botões em Jost, sem caixa alta e mais leves */
.btn {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  text-transform: none;
  padding: 14px 32px;
}
.nav-cta .btn { font-size: 0.85rem; }

/* 3. Menos decoração — remover motivo botânico */
.cta-band::after, .page-hero::after { display: none; }

/* 4. Mais respiro vertical */
section { padding: clamp(84px, 11vw, 180px) 0; }
.section-head { margin: 0 auto 76px; }
.hero-content p { margin-bottom: 44px; }

/* 5. Fio dourado do hero mais discreto */
.hero-visual picture { border-radius: 8px; }
.hero-visual::before {
  inset: 18px -16px -18px 16px;
  border-width: 1px;
  border-radius: 8px;
}

/* 6. Marquee mais lento e em itálico */
.marquee-track { animation-duration: 60s; }
.marquee-track span { font-style: italic; font-weight: 500; }

/* 7. Cards com hover sutil — só sombra */
.card {
  border-radius: 8px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -40px rgba(42, 39, 37, 0.35);
  border-color: var(--linha);
}

/* 8. Barra do menu mais fina + transparente no topo */
.site-header {
  background: transparent;
  padding: 10px 0;
}
.site-header.scrolled {
  background: var(--verde);
  padding: 8px 0;
}
.nav-links a { color: var(--texto); }
.nav-links a:hover,
.nav-links a.active { color: var(--dourado-escuro); }
.site-header.scrolled .nav-links a { color: rgba(255,255,255,0.9); }
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active { color: #fff; }
.nav-toggle span { background: var(--texto); }
.site-header.scrolled .nav-toggle span { background: #fff; }

/* 9. Reveal — fade lento, sem salto vertical */
.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 1.2s ease;
}
.reveal.visible { opacity: 1; }

/* 10. Detalhes finos — títulos com peso mais leve para editorial */
h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.2px; }
h1 { font-size: clamp(2.6rem, 6.4vw, 4.4rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); }

/* botões principais em dourado degradê */
.btn-gold {
  background: linear-gradient(135deg, #d5b475 0%, #b08e4d 55%, #8f6e33 100%);
  color: #fff;
  border: 1px solid rgba(156,122,61,0.55);
  box-shadow: 0 6px 20px -10px rgba(156,122,61,0.45);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #8f6e33 0%, #b08e4d 55%, #d5b475 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(156,122,61,0.55);
}
.cta-band .btn-gold,
.section-dark .btn-gold {
  background: linear-gradient(135deg, #d5b475 0%, #b08e4d 55%, #8f6e33 100%);
  color: #fff;
}

/* card órfão no grid-4: centralizar na 2ª linha com a mesma largura */
.grid-4 > .card:nth-child(4n+1):last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: calc((100% - 3 * 28px) / 4);
}
@media (max-width: 980px) {
  .grid-4 > .card:nth-child(4n+1):last-child {
    max-width: calc((100% - 28px) / 2);
  }
}
@media (max-width: 580px) {
  .grid-4 > .card:nth-child(4n+1):last-child {
    max-width: none;
  }
}

/* Título do hero em negrito */
.hero-content h1,
.hero-content h1 span { font-weight: 700; }

/* garantia: fotos sempre visíveis (sem depender de animação de rolagem) */
.reveal, .fade-img { opacity: 1 !important; transform: none !important; }
.hero-visual img,
.split-visual img,
.gallery-item img,
.hero-visual picture,
.split-visual picture,
.gallery-item picture { opacity: 1 !important; }

/* fix: picture element sempre bloco cheio dentro do container */
.hero-visual picture,
.split-visual picture,
.gallery-item picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}
.split-visual img,
.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
