/* =====================================================
   MÃE MARTA — Landing Page
   Paleta inspirada na imagem: dourado champagne, verde
   esmeralda, marrom profundo e brilho quente de velas.
   ===================================================== */

:root {
  /* Fundos */
  --bg-0: #0d0907;
  --bg-1: #160f0a;
  --bg-2: #1c1410;
  --bg-emerald: #16302a;

  /* Dourados */
  --gold: #c9a96a;
  --gold-soft: #d9bd86;
  --gold-bright: #ecd6a3;
  --gold-deep: #a07f45;

  /* Verde esmeralda (vestido) */
  --emerald: #1f4438;
  --emerald-light: #2f6452;

  /* Brilho de vela */
  --candle: #eaa85a;
  --candle-glow: rgba(240, 190, 110, 0.35);

  /* Texto */
  --cream: #f3e8d2;
  --cream-dim: #cdbb9d;
  --muted: #9c8a72;

  /* Tipografia */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Tangerine', cursive;
  --sans: 'Jost', system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 112.5%; } /* base ~18px para leitura mais confortável */
@media (max-width: 680px) { html { font-size: 106.25%; } }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.12rem;
  color: var(--cream);
  background: var(--bg-0);
  line-height: 1.75;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(160, 127, 69, 0.12), transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(31, 68, 56, 0.22), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(234, 168, 90, 0.08), transparent 60%);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.container { width: min(92%, var(--maxw)); margin-inline: auto; }
.container.narrow { width: min(92%, 820px); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}

.gold {
  color: var(--gold-bright);
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-bright), var(--gold-soft));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}

.ornament {
  display: block;
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.5em;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

/* ===== PARTÍCULAS DE FUNDO ===== */
.particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 15% 30%, rgba(236, 214, 163, 0.8), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(236, 214, 163, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(234, 168, 90, 0.5), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(236, 214, 163, 0.5), transparent),
    radial-gradient(1px 1px at 25% 85%, rgba(234, 168, 90, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 60% 45%, rgba(236, 214, 163, 0.4), transparent);
  background-size: 100% 100%;
  animation: drift 24s ease-in-out infinite alternate;
  opacity: 0.7;
}
@keyframes drift {
  from { transform: translateY(0) scale(1); opacity: 0.5; }
  to   { transform: translateY(-30px) scale(1.05); opacity: 0.85; }
}

/* ===== CABEÇALHO ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(13, 9, 7, 0.55);
  border-bottom: 1px solid rgba(201, 169, 106, 0.15);
  transition: background 0.3s ease;
}
.site-header.scrolled { background: rgba(13, 9, 7, 0.92); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  width: min(92%, var(--maxw)); margin-inline: auto;
  padding: 0.9rem 0;
}
.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-mark { color: var(--gold); font-size: 1.1rem; }
.brand-name { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); letter-spacing: 0.02em; }

.nav-menu { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-menu a {
  font-size: 0.9rem; letter-spacing: 0.04em; color: var(--cream-dim);
  position: relative; transition: color 0.25s ease;
}
.nav-menu a:hover { color: var(--gold-bright); }
.nav-menu a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-menu a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold-bright);
  padding: 0.45rem 1.1rem; border-radius: 999px; transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--bg-0); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--gold-soft); transition: all 0.3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 400; font-size: 0.95rem;
  letter-spacing: 0.03em; padding: 0.85rem 1.7rem; border-radius: 999px;
  cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}
.btn-lg { padding: 1rem 2.1rem; font-size: 1rem; }
.btn-gold {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--gold-bright));
  color: #2a1d0c; box-shadow: 0 10px 30px rgba(201, 169, 106, 0.25);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201, 169, 106, 0.4); }
.btn-ghost { border-color: rgba(201, 169, 106, 0.5); color: var(--gold-bright); background: rgba(201, 169, 106, 0.05); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(201, 169, 106, 0.14); transform: translateY(-3px); }

/* ===== HERO ===== */
.hero { position: relative; z-index: 1; padding: 4rem 0 5rem; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 75% 50%, rgba(234, 168, 90, 0.16), transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(31, 68, 56, 0.3), transparent 55%);
}
.hero-inner {
  width: min(92%, var(--maxw)); margin-inline: auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center;
}
.hero-title { margin: 0.2rem 0 0.6rem; }
.hero-title .script {
  font-family: var(--script); font-weight: 700; font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 0.9; color: var(--gold-bright);
  background: linear-gradient(115deg, var(--gold-deep), var(--gold-bright) 45%, var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(234, 168, 90, 0.35));
}
.hero .eyebrow { font-family: var(--serif); font-size: 1.6rem; letter-spacing: 0.12em; text-transform: none; color: var(--cream); }
.hero-sub { font-size: 1.15rem; color: var(--cream-dim); max-width: 36ch; margin-bottom: 1.8rem; font-style: italic; font-family: var(--serif); }

.hero-bio { color: var(--cream-dim); margin-bottom: 1rem; max-width: 52ch; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem; margin: 0.4rem 0 1.8rem;
  padding: 0.6rem 1.1rem; border-radius: 999px; font-family: var(--serif); font-size: 1.1rem;
  color: var(--gold-bright); background: rgba(31, 68, 56, 0.25);
  border: 1px solid rgba(201, 169, 106, 0.3);
}
.hero-badge .ico { color: var(--gold); }

.hero-services { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 2rem; }
.hero-services li {
  display: flex; align-items: center; gap: 0.8rem; font-size: 1.05rem;
  color: var(--cream); font-family: var(--serif);
}
.hero-services .ico {
  display: grid; place-items: center; width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(201, 169, 106, 0.4); border-radius: 50%;
  background: rgba(201, 169, 106, 0.06); font-size: 1.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-figure { position: relative; }
.hero-figure img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid rgba(201, 169, 106, 0.25);
  width: 100%; max-height: 580px; object-fit: cover; object-position: center top;
  animation: floaty 7s ease-in-out infinite;
}
.hero-figure::after {
  content: ''; position: absolute; inset: -8%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, var(--candle-glow), transparent 65%);
  animation: flicker 4s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes flicker { 0%,100% { opacity: 0.6; } 45% { opacity: 0.9; } 70% { opacity: 0.55; } }

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%);
  font-size: 2rem; color: var(--gold-soft); animation: bob 2s ease-in-out infinite; opacity: 0.7;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== SEÇÕES GERAIS ===== */
section { position: relative; z-index: 1; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }

.intro { padding: 4.5rem 0; }
.intro .lead {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  text-align: center; color: var(--cream); line-height: 1.5; margin-bottom: 3rem;
}
.pillars { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillars li {
  text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(31, 68, 56, 0.25), rgba(28, 20, 16, 0.5));
  border: 1px solid rgba(201, 169, 106, 0.14);
}
.pillar-ico { font-size: 2rem; display: block; margin-bottom: 0.8rem; }
.pillars h3 { font-size: 1.3rem; color: var(--gold-bright); margin-bottom: 0.4rem; }
.pillars p { color: var(--cream-dim); font-size: 0.98rem; }

/* ===== SERVIÇOS ===== */
.services { padding: 5rem 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  padding: 2.2rem 1.8rem; border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(28, 20, 16, 0.85), rgba(13, 9, 7, 0.7));
  border: 1px solid rgba(201, 169, 106, 0.16);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(234, 168, 90, 0.12), transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card-ico {
  width: 60px; height: 60px; display: grid; place-items: center; font-size: 1.7rem;
  border-radius: 50%; margin-bottom: 1.2rem;
  background: rgba(201, 169, 106, 0.1); border: 1px solid rgba(201, 169, 106, 0.35);
}
.card h3 { font-size: 1.45rem; color: var(--gold-bright); margin-bottom: 0.6rem; }
.card p { color: var(--cream-dim); position: relative; }

/* ===== CAMINHOS DO AMOR ===== */
.love { padding: 5rem 0; }
.section-intro { color: var(--cream-dim); max-width: 52ch; margin: 0.8rem auto 0; font-size: 1.05rem; }
.love-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.love-card {
  border-radius: 18px; overflow: hidden;
  background: linear-gradient(165deg, rgba(96, 34, 54, 0.4), rgba(34, 24, 20, 0.92));
  border: 1px solid rgba(201, 169, 106, 0.35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.love-card:hover { transform: translateY(-7px); border-color: var(--gold-bright); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65); }
.love-img {
  position: relative; margin: 0; aspect-ratio: 16 / 10; overflow: hidden;
  background: linear-gradient(160deg, rgba(80, 28, 45, 0.4), rgba(28, 20, 16, 0.7));
}
.love-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.95); }
.love-card:hover .love-img img { transform: scale(1.06); }
.love-ico {
  position: absolute; left: 1rem; bottom: -22px; z-index: 2;
  display: grid; place-items: center; width: 52px; height: 52px;
  font-size: 1.5rem; border-radius: 50%;
  background: var(--bg-1); border: 1px solid rgba(201, 169, 106, 0.5);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.love-img.is-placeholder { display: grid; place-items: center; }
.love-img.is-placeholder .ph-mark { font-size: 2rem; color: var(--gold-soft); }
.love-body { padding: 2rem 1.5rem 1.8rem; border-top: 1px solid rgba(201, 169, 106, 0.18); }
.love-card h3 { font-size: 1.4rem; color: var(--gold-bright); margin-bottom: 0.5rem; }
.love-card p { color: var(--cream-dim); font-size: 1rem; }
.love-note {
  text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 2.2rem;
  max-width: 58ch; margin-inline: auto; font-style: italic;
}

/* ===== SOBRE ===== */
.about { padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center; }
.about-photo { margin: 0; }
.about-photo img {
  border-radius: var(--radius); border: 1px solid rgba(201, 169, 106, 0.25);
  box-shadow: var(--shadow);
}
.about-caption {
  margin-top: 1rem; text-align: center; padding: 0.9rem 1rem;
  border: 1px solid rgba(201, 169, 106, 0.22); border-radius: 12px;
  background: rgba(31, 68, 56, 0.18);
}
.about-caption strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--gold-bright); }
.about-caption span { color: var(--cream-dim); font-size: 1rem; }

/* ===== BANNER ATENDIMENTO JÁ ===== */
.cta-banner { padding: 4rem 0; text-align: center; }
.cta-banner .container {
  border: 1px solid rgba(201, 169, 106, 0.3); border-radius: var(--radius);
  padding: 3rem 1.5rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(234, 168, 90, 0.16), transparent 60%),
    linear-gradient(160deg, rgba(31, 68, 56, 0.35), rgba(28, 20, 16, 0.7));
  box-shadow: var(--shadow);
}
.banner-tag { letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); font-size: 0.85rem; margin-bottom: 0.6rem; }
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--gold-bright); }
.banner-sub { color: var(--cream-dim); font-size: 1.15rem; margin: 0.6rem 0 1.8rem; }

/* ===== GALERIA / CARROSSEL ===== */
.gallery { padding: 5rem 0; }
.carousel {
  position: relative; overflow: hidden; border-radius: var(--radius);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.carousel-track {
  display: flex; width: max-content;
  animation: scroll-x 36s linear infinite;
}
.carousel:hover .carousel-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.slide {
  margin: 0 1rem 0 0; flex: 0 0 auto; width: 340px; aspect-ratio: 1 / 1;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(201, 169, 106, 0.2); background: rgba(28, 20, 16, 0.5);
}
.slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.95); transition: filter 0.4s ease; }
.slide:hover img { filter: brightness(1.08); }
.slide.is-placeholder {
  display: grid; place-items: center; gap: 0.3rem; border-style: dashed;
  background: linear-gradient(160deg, rgba(31, 68, 56, 0.25), rgba(28, 20, 16, 0.6));
}
.slide.is-placeholder .ph-mark { font-size: 2rem; color: var(--gold-soft); }
.slide.is-placeholder .ph-text { color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.8rem; }
.about-text h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--gold-bright); }
.about-tag { font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: 1.15rem; margin-bottom: 1.4rem; }
.about-text p { color: var(--cream-dim); margin-bottom: 1.1rem; }
.about-text .btn { margin-top: 0.8rem; }

/* ===== COMO FUNCIONA ===== */
.how { padding: 5rem 0; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step {
  text-align: center; padding: 2rem 1.4rem; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(31, 68, 56, 0.2), rgba(28, 20, 16, 0.5));
  border: 1px solid rgba(201, 169, 106, 0.14); position: relative;
}
.step-num {
  display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 1rem;
  border-radius: 50%; font-family: var(--serif); font-size: 1.6rem; color: var(--bg-0);
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-bright));
  box-shadow: 0 0 22px var(--candle-glow);
}
.step h3 { font-size: 1.2rem; color: var(--gold-bright); margin-bottom: 0.4rem; }
.step p { color: var(--cream-dim); font-size: 0.95rem; }

/* ===== FAQ ===== */
.faq { padding: 5rem 0; }
.accordion { display: grid; gap: 1rem; }
.accordion details {
  border: 1px solid rgba(201, 169, 106, 0.18); border-radius: 12px;
  background: rgba(28, 20, 16, 0.55); overflow: hidden; transition: border-color 0.3s ease;
}
.accordion details[open] { border-color: var(--gold); }
.accordion summary {
  cursor: pointer; padding: 1.2rem 1.5rem; font-family: var(--serif); font-size: 1.25rem;
  color: var(--cream); list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; color: var(--gold); font-size: 1.5rem; transition: transform 0.3s ease; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details p { padding: 0 1.5rem 1.3rem; color: var(--cream-dim); }

/* ===== CONTATO ===== */
.contact { padding: 5.5rem 0; text-align: center; }
.contact h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.8rem; }
.contact-sub { color: var(--cream-dim); font-size: 1.1rem; max-width: 46ch; margin: 0 auto 2rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.contact-note { margin-top: 1.5rem; color: var(--muted); font-size: 0.9rem; letter-spacing: 0.04em; }

/* ===== DISCLAIMER ===== */
.disclaimer { padding: 2.5rem 0 4rem; }
.disclaimer .container {
  border: 1px solid rgba(201, 169, 106, 0.22); border-radius: 12px;
  padding: 1.6rem 1.8rem; background: rgba(28, 20, 16, 0.5);
}
.disclaimer p { color: var(--cream-dim); font-size: 0.92rem; line-height: 1.65; }
.disclaimer strong { color: var(--gold-soft); }

/* ===== RODAPÉ ===== */
.site-footer { border-top: 1px solid rgba(201, 169, 106, 0.15); padding-top: 3rem; background: rgba(13, 9, 7, 0.6); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; }
.footer-brand .brand-mark { font-size: 1.2rem; color: var(--gold); }
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.3rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.footer-links a { color: var(--cream-dim); font-size: 0.9rem; transition: color 0.25s ease; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-base {
  text-align: center; padding: 1.5rem 0; border-top: 1px solid rgba(201, 169, 106, 0.1);
  color: var(--muted); font-size: 0.82rem;
}
.footer-mini { margin-top: 0.3rem; opacity: 0.8; }

/* ===== WHATSAPP FLUTUANTE ===== */
.float-wa {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 60;
  width: 58px; height: 58px; display: grid; place-items: center; font-size: 1.6rem;
  border-radius: 50%; background: linear-gradient(135deg, #1f4438, #2f6452);
  border: 1px solid var(--gold-soft); box-shadow: 0 8px 26px rgba(0,0,0,0.5);
  animation: pulse 2.6s ease-in-out infinite; transition: transform 0.25s ease;
}
.float-wa:hover { transform: scale(1.08); }
@keyframes pulse {
  0%,100% { box-shadow: 0 8px 26px rgba(0,0,0,0.5), 0 0 0 0 rgba(201,169,106,0.4); }
  50% { box-shadow: 0 8px 26px rgba(0,0,0,0.5), 0 0 0 14px rgba(201,169,106,0); }
}

/* ===== ANIMAÇÃO DE ENTRADA (REVEAL) ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVO ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-text { order: 2; }
  .hero-figure { order: 1; max-width: 400px; margin: 0 auto; }
  .hero-services { display: inline-grid; text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .pillars, .cards, .steps, .love-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { max-width: 360px; margin: 0 auto; }
  .about-text { text-align: center; }
  .slide { width: 300px; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    gap: 1.1rem; padding: 1.4rem 1.6rem 1.8rem; background: rgba(13, 9, 7, 0.98);
    border-bottom: 1px solid rgba(201, 169, 106, 0.2);
    transform: translateY(-130%); transition: transform 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }
  .nav-menu.open { transform: translateY(0); }

  /* Seções com respiro menor no celular */
  .intro, .services, .love, .about, .how, .faq, .gallery { padding: 3rem 0; }
  .contact { padding: 3.5rem 0; }
  .cta-banner { padding: 2.5rem 0; }
  .section-head { margin-bottom: 2rem; }

  .pillars, .cards, .steps, .love-grid { grid-template-columns: 1fr; }

  /* Hero mais compacto */
  .hero { padding: 1.5rem 0 2.5rem; }
  .hero-title .script { font-size: clamp(3.4rem, 18vw, 5rem); }
  .hero .eyebrow { font-size: 1.3rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-actions, .banner-actions { flex-direction: column; }
  .contact-actions .btn, .banner-actions .btn { width: 100%; justify-content: center; }

  /* Cards e cartões com padding menor */
  .card, .love-card, .step, .pillars li { padding: 1.6rem 1.3rem; }
  .disclaimer .container { padding: 1.3rem 1.2rem; }

  .slide { width: 240px; }

  .footer-grid { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; gap: 0.9rem 1.2rem; }
  .float-wa { width: 52px; height: 52px; font-size: 1.4rem; right: 1rem; bottom: 1rem; }
}

@media (max-width: 430px) {
  .container, .container.narrow { width: 90%; }
  .hero-title .script { font-size: clamp(3rem, 19vw, 4.2rem); }
  .section-head h2, .about-text h2 { font-size: 1.7rem; }
  .nav .brand-name { font-size: 1.25rem; }
  .slide { width: 78vw; }
}

/* ===== ACESSIBILIDADE — reduzir movimento ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
