/* ============================================================
   MÃE MEIRE — Luxo Espiritual
   Paleta: dourado, preto profundo, azul noturno, branco suave
   ============================================================ */

:root {
  --gold: #D4AF37;
  --gold-soft: #E8CE85;
  --gold-deep: #9A7B22;
  --gold-grad: linear-gradient(135deg, #F6E6A6 0%, #D4AF37 45%, #A6841F 100%);
  --black: #0A0A0A;
  --night: #101828;
  --night-2: #0c1320;
  --white: #F8F8F8;
  --muted: #B9BDC6;
  --muted-2: #7E8493;
  --line: rgba(212, 175, 55, 0.18);
  --glass: rgba(255, 255, 255, 0.035);
  --glass-2: rgba(255, 255, 255, 0.06);

  --serif: "Cormorant Garamond", Georgia, serif;
  --label: "Cinzel", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.01em;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--black); }

/* ---------- Reusable ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::before { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }

.h-display {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 300;
}
.h-section {
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 300;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); font-weight: 300; }

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 17px 30px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn-gold {
  background: var(--gold-grad);
  color: #20180a;
  box-shadow: 0 8px 34px -8px rgba(212, 175, 55, 0.55), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-gold::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 44px -8px rgba(212, 175, 55, 0.7), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn-gold:hover::after { transform: translateX(120%); }

.btn-ghost {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-lg { padding: 21px 40px; font-size: 16px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  padding: 13px 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--label);
  font-size: 17px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.brand-name span { color: var(--gold); display: block; font-size: 9px; letter-spacing: 0.34em; font-weight: 400; margin-top: 5px; color: var(--muted-2); white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); transition: 0.3s; display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 50% 18%, rgba(212,175,55,0.13), transparent 42%),
    radial-gradient(circle at 80% 85%, rgba(16,24,40,0.85), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #0c1018 55%, #0a0a0a 100%);
  overflow: hidden;
}
#stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(120vh, 1100px); height: min(120vh, 1100px);
  border: 1px solid rgba(212,175,55,0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-orbit::before, .hero-orbit::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.06);
}
.hero-orbit::before { inset: 13%; }
.hero-orbit::after { inset: 28%; border-color: rgba(212,175,55,0.1); }

.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }

.hero-copy { max-width: 640px; }
.hero h1 { margin: 26px 0 24px; }
.hero .lead { max-width: 520px; margin-bottom: 16px; }
.hero-sub-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--gold-soft);
  margin: 30px 0 34px;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-trust { display: flex; gap: 30px; margin-top: 46px; flex-wrap: wrap; }
.hero-trust .stat { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .num { font-family: var(--serif); font-size: 34px; color: var(--gold); line-height: 1; }
.hero-trust .lbl { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.hero-trust .div { width: 1px; background: var(--line); }

/* Hero visual — tarot card stack */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 460px; }
.card-stack { position: relative; width: 280px; height: 440px; }
.tarot {
  position: absolute;
  width: 220px; height: 360px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #141b2b, #0a0a0a);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8), inset 0 1px 0 rgba(212,175,55,0.18);
  overflow: hidden;
  top: 40px; left: 30px;
}
.tarot-back { left: -22px; top: 70px; transform: rotate(-11deg); opacity: 0.65; }
.tarot-back2 { left: 80px; top: 60px; transform: rotate(10deg); opacity: 0.5; }
.tarot-main { z-index: 3; animation: float 7s ease-in-out infinite; }
.tarot .frame {
  position: absolute; inset: 12px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 9px;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.tarot .ornament { width: 110px; height: 110px; }
.tarot .roman { font-family: var(--label); color: var(--gold); letter-spacing: 0.3em; font-size: 14px; }
.tarot .name { font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: 19px; }
.hero-glow { position: absolute; width: 340px; height: 340px; background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 70%); filter: blur(20px); z-index: 0; }

@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(0.5deg); } }

/* ============================================================
   MARQUEE / TRUST BAR
   ============================================================ */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,24,40,0.4), rgba(10,10,10,0.4));
  padding: 22px 0;
  overflow: hidden;
}
.marquee { display: flex; gap: 60px; white-space: nowrap; animation: scroll 32s linear infinite; width: max-content; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--muted); display: inline-flex; align-items: center; gap: 60px; }
.marquee span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 13px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.sec { padding: clamp(90px, 12vw, 150px) 0; }
.sec-head { max-width: 720px; margin-bottom: 64px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .h-section { margin: 22px 0 20px; }

.bg-night { background: linear-gradient(180deg, #0a0a0a, var(--night-2) 50%, #0a0a0a); }

/* ---------- SOBRE ---------- */
.sobre-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.sobre-photo-wrap { position: relative; }
.sobre-photo {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.9);
  overflow: hidden;
}
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; }
.sobre-photo-wrap::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: 18px; padding: 1px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.5; pointer-events: none;
}
.sobre-badge {
  position: absolute; bottom: -26px; right: -16px;
  background: linear-gradient(160deg, #161d2d, #0a0a0a);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}
.sobre-badge .num { font-family: var(--serif); font-size: 38px; color: var(--gold); line-height: 1; }
.sobre-badge .lbl { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }

.sobre-copy p { color: var(--muted); margin-bottom: 20px; font-size: 17px; }
.sobre-copy p strong { color: var(--white); font-weight: 400; }
.sobre-sign { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--gold-soft); margin-top: 14px; }
.sobre-pillars { display: flex; gap: 30px; margin-top: 34px; flex-wrap: wrap; }
.sobre-pillars .p { display: flex; gap: 12px; align-items: flex-start; }
.sobre-pillars .p svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.sobre-pillars .p b { font-weight: 500; color: var(--white); font-size: 14px; display: block; }
.sobre-pillars .p span { font-size: 13px; color: var(--muted-2); }

/* ---------- SERVIÇOS ---------- */
.serv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.serv-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 38px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s, background 0.5s;
  backdrop-filter: blur(8px);
}
.serv-card.feature { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
.serv-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.serv-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.4); background: var(--glass-2); }
.serv-card:hover::before { opacity: 1; }

.serv-icon {
  width: 56px; height: 56px; border-radius: 13px;
  background: linear-gradient(160deg, rgba(212,175,55,0.18), rgba(212,175,55,0.04));
  border: 1px solid var(--line);
  display: grid; place-items: center; margin-bottom: 26px;
}
.serv-icon svg { width: 28px; height: 28px; color: var(--gold); }
.serv-card h3 { font-size: 27px; margin-bottom: 12px; }
.serv-card p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.serv-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.serv-list li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--muted); }
.serv-list li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.serv-feature-body { padding: 46px 44px; display: flex; flex-direction: column; justify-content: center; }
.serv-feature-visual {
  position: relative; min-height: 340px;
  background:
    radial-gradient(circle at 50% 40%, rgba(212,175,55,0.18), transparent 60%),
    linear-gradient(160deg, #141b2b, #0a0a0a);
  display: grid; place-items: center;
  border-left: 1px solid var(--line);
}
.serv-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--label); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line); border-radius: 100px; padding: 7px 16px; margin-bottom: 20px;
}
.serv-card.feature h3 { font-size: clamp(30px, 3.4vw, 42px); }

/* ---------- COMO FUNCIONA ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 38px; left: 16%; right: 16%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.step { text-align: center; padding: 0 26px; position: relative; }
.step-num {
  width: 76px; height: 76px; border-radius: 50%;
  margin: 0 auto 28px;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 30px; color: var(--gold);
  background: linear-gradient(160deg, #161d2d, #0a0a0a);
  border: 1px solid var(--line);
  position: relative; z-index: 2;
  box-shadow: 0 0 0 8px var(--black);
}
.step h3 { font-size: 23px; margin-bottom: 14px; min-height: 2.1em; display: flex; align-items: flex-end; justify-content: center; }
.step p { color: var(--muted); font-size: 15px; max-width: 280px; margin: 0 auto; }

/* ---------- DEPOIMENTOS ---------- */
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.depo {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s;
  backdrop-filter: blur(8px);
}
.depo:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.35); }
.depo .quote-mark { font-family: var(--serif); font-size: 70px; color: var(--gold); line-height: 0.6; height: 30px; opacity: 0.6; }
.depo .stars { display: flex; gap: 3px; margin: 8px 0 18px; }
.depo .stars svg { width: 16px; height: 16px; color: var(--gold); }
.depo p { color: var(--muted); font-size: 15px; flex: 1; line-height: 1.7; }
.depo-author { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.depo-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-grad);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 20px; color: #20180a; font-weight: 600;
}
.depo-author b { font-weight: 500; font-size: 15px; display: block; }
.depo-author span { font-size: 12px; color: var(--muted-2); letter-spacing: 0.04em; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; text-align: left;
  font-family: var(--serif); font-size: clamp(19px, 2vw, 24px); color: var(--white); font-weight: 400;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--gold); transition: transform 0.4s var(--ease);
  top: 50%; left: 50%;
}
.faq-icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { color: var(--muted); font-size: 15px; padding-bottom: 26px; padding-right: 30px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  text-align: center;
  padding: clamp(90px, 12vw, 150px) 0;
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,175,55,0.12), transparent 55%),
    linear-gradient(180deg, #0a0a0a, #0c1018);
  overflow: hidden;
}
.cta-orbit { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; border: 1px solid rgba(212,175,55,0.08); border-radius: 50%; }
.cta-orbit::before { content:""; position:absolute; inset: 20%; border: 1px solid rgba(212,175,55,0.06); border-radius: 50%; }
.cta .wrap { position: relative; z-index: 2; }
.cta .h-section { margin: 22px auto 22px; max-width: 16ch; }
.cta .lead { max-width: 540px; margin: 0 auto 18px; }
.cta-scarcity {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.06em; color: var(--gold-soft);
  background: rgba(212,175,55,0.08); border: 1px solid var(--line);
  padding: 9px 20px; border-radius: 100px; margin-bottom: 36px;
}
.cta-scarcity .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 70px 0 36px; background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer .brand { margin-bottom: 22px; }
.footer-about p { color: var(--muted-2); font-size: 14px; max-width: 320px; }
.footer h4 { font-family: var(--label); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 500; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer ul a, .footer ul li { color: var(--muted); font-size: 14px; transition: color 0.3s; }
.footer ul a:hover { color: var(--gold); }
.footer-wpp { font-family: var(--serif); font-size: 26px; color: var(--gold); font-style: italic; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: var(--muted-2); }
.footer-disclaimer { font-size: 11px; color: #565b68; max-width: 720px; margin-top: 18px; line-height: 1.6; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wpp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; align-items: center; gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 0;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,0.5);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  font-weight: 500;
}
.wpp-float:hover { transform: scale(1.04); box-shadow: 0 14px 38px -6px rgba(37,211,102,0.7); }
.wpp-float .ic { width: 58px; height: 58px; display: grid; place-items: center; flex-shrink: 0; }
.wpp-float .ic svg { width: 30px; height: 30px; }
.wpp-float .txt { font-size: 14px; padding-right: 24px; white-space: nowrap; max-width: 0; overflow: hidden; transition: max-width 0.5s var(--ease), padding 0.5s; }
.wpp-float:hover .txt { max-width: 200px; padding-right: 24px; }
.wpp-float .pulse-ring { position: absolute; right: 14px; top: 14px; width: 30px; height: 30px; border-radius: 50%; border: 2px solid #25D366; animation: ring 2s infinite; pointer-events: none; }
@keyframes ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(2.2); opacity: 0; } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; min-height: 360px; }
  .card-stack { transform: scale(0.82); }
  .sobre-grid { grid-template-columns: 1fr; gap: 60px; }
  .sobre-photo { max-width: 440px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.97); backdrop-filter: blur(18px);
    padding: 30px 28px; gap: 22px; border-bottom: 1px solid var(--line);
  }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .serv-grid { grid-template-columns: 1fr; }
  .serv-card.feature { grid-column: span 1; grid-template-columns: 1fr; }
  .serv-feature-visual { min-height: 220px; border-left: none; border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .steps::before { display: none; }
  .depo-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .wpp-float .txt { display: none; }
  .wrap { padding: 0 22px; }
}
