/* =============================================================
   Andrade, Santos & França Advogados
   Design System — Nacional Premium · Mobile First
   ============================================================= */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--white);
  overflow-x: hidden; line-height: 1.65;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ── Design Tokens ── */
:root {
  /* Blues */
  --navy:          #0B1E40;
  --navy-mid:      #12306A;
  --navy-soft:     #1A4A9A;
  --navy-pale:     #EBF0FA;
  --navy-ghost:    #F4F7FE;

  /* Gold — accent only */
  --gold:          #C4A35A;
  --gold-light:    #DBBF7E;
  --gold-dark:     #A08040;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F8FAFD;
  --gray-50:       #F1F4FB;
  --gray-100:      #E2E8F4;
  --gray-200:      #B8C6DE;
  --gray-400:      #7B90B2;
  --gray-600:      #3D5278;
  --gray-900:      #0B1E40;

  /* Semantic */
  --text:          #0B1E40;
  --text-md:       #3D5278;
  --text-soft:     #7B90B2;
  --border:        #E2E8F4;
  --border-dark:   rgba(255,255,255,.08);

  /* Shadows */
  --shadow-xs:     0 1px 3px rgba(11,30,64,.06);
  --shadow-sm:     0 2px 8px rgba(11,30,64,.07);
  --shadow-md:     0 6px 24px rgba(11,30,64,.09);
  --shadow-lg:     0 16px 48px rgba(11,30,64,.12);
  --shadow-xl:     0 24px 64px rgba(11,30,64,.16);

  /* Radii */
  --r-xs:  4px;
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full:999px;

  /* Easing */
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-out:    cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* Layout */
  --header-h:    72px;
  --section-y:   5.5rem;
  --max-w:       1200px;
}

/* ── Utilities ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ────────────────────────────────────────────
   PROGRESS BAR
──────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 9999;
  background: linear-gradient(90deg, var(--navy-mid), var(--gold));
  transition: width .1s linear;
}

/* ────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; letter-spacing: .025em; border-radius: var(--r-sm);
  transition: all .22s var(--ease); cursor: pointer; text-align: center;
  white-space: nowrap; border: 2px solid transparent; font-family: inherit;
  padding: .75rem 1.625rem; font-size: .9375rem;
}
.btn--sm  { padding: .5rem 1.125rem; font-size: .875rem; }
.btn--lg  { padding: .9375rem 2rem;  font-size: 1rem; }
.btn--xl  { padding: 1.0625rem 2.5rem; font-size: 1rem; letter-spacing: .03em; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-mid); border-color: var(--navy-mid);
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,30,64,.28);
  color: var(--white);
}

.btn--gold {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,163,90,.3);
  color: var(--navy);
}

.btn--outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn--outline-white {
  background: transparent; color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.35);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.7); }

.btn--outline-gold {
  background: transparent; color: var(--gold); border-color: rgba(196,163,90,.45);
}
.btn--outline-gold:hover { background: rgba(196,163,90,.08); border-color: var(--gold); color: var(--gold); }

.btn--whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn--whatsapp:hover { background: #1aaa52; border-color: #1aaa52; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }

.btn--dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--dark:hover { background: var(--navy-mid); color: #fff; border-color: var(--navy-mid); }

/* ────────────────────────────────────────────
   HEADER — mobile-first
──────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.header.scrolled { background: rgba(11,30,64,.97); box-shadow: 0 2px 24px rgba(0,0,0,.2); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem;
}

/* Logo */
.header__logo { display: flex; flex-direction: column; line-height: 1.1; gap: 1px; min-width: 0; }
.header__logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-weight: 700; color: #fff;
  letter-spacing: .01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.header__logo-text em { font-style: normal; color: var(--gold); }
.header__logo-sub {
  font-size: .6rem; color: rgba(255,255,255,.35);
  letter-spacing: .14em; text-transform: uppercase;
}

/* Nav — hidden on mobile */
.header__nav { display: none; }
.header__nav-list { display: flex; align-items: center; gap: .125rem; }
.header__nav-link {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.65);
  padding: .5rem .875rem; border-radius: var(--r-xs);
  transition: color .2s, background .2s;
}
.header__nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.header__nav-link.active { color: var(--gold); }

/* Actions */
.header__actions { display: flex; align-items: center; gap: .625rem; }
.header__menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: var(--r-xs); transition: background .2s; flex-shrink: 0;
}
.header__menu-toggle:hover { background: rgba(255,255,255,.07); }
.header__menu-toggle span { display: block; height: 1.5px; background: #fff; width: 22px; border-radius: 2px; transition: all .3s var(--ease); }
.header__menu-toggle span:nth-child(2) { width: 15px; }
.header__menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.header__menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.header.nav-open .header__nav {
  display: block; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--navy); padding: 1.5rem 1.25rem 2rem; overflow-y: auto;
  border-top: 1px solid rgba(255,255,255,.07);
}
.header.nav-open .header__nav-list { flex-direction: column; align-items: stretch; gap: 0; }
.header.nav-open .header__nav-link {
  padding: 1rem 0; font-size: 1.125rem; font-weight: 500; color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0;
  display: flex; align-items: center;
}
.header.nav-open .header__nav-list li:last-child .header__nav-link { border-bottom: none; }

@media (min-width: 900px) {
  .header__nav { display: block; }
  .header__menu-toggle { display: none; }
  .header.nav-open .header__nav { position: static; background: none; padding: 0; border: none; overflow: visible; }
  .header.nav-open .header__nav-list { flex-direction: row; }
  .header.nav-open .header__nav-link { padding: .5rem .875rem; font-size: .875rem; border: none; }
}

/* ────────────────────────────────────────────
   SECTION SYSTEM — mobile first
──────────────────────────────────────────── */
.section { padding: var(--section-y) 0; }

/* Section header pattern */
.section__label {
  display: flex; align-items: center; gap: .75rem;
  font-size: .6875rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--navy-soft);
  margin-bottom: 1rem;
}
.section__label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold); flex-shrink: 0; }

.section__label--light { color: rgba(255,255,255,.5); }
.section__label--light::before { background: rgba(196,163,90,.5); }

.section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 5vw, 2.625rem);
  font-weight: 700; line-height: 1.18; color: var(--navy);
  letter-spacing: -.02em; margin-bottom: .875rem;
}
.section__title--light { color: #fff; }
.section__title em { font-style: italic; color: var(--gold); }

.section__text {
  font-size: 1.0625rem; color: var(--text-md); line-height: 1.8; max-width: 560px;
}
.section__text--light { color: rgba(255,255,255,.6); }

.section__header { margin-bottom: 3rem; }
.section__header--center { text-align: center; }
.section__header--center .section__label { justify-content: center; }
.section__header--center .section__text { margin: 0 auto; }

/* ────────────────────────────────────────────
   HERO — dark navy, full-viewport
──────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  background: var(--navy); display: flex; align-items: center;
  padding-top: var(--header-h); overflow: hidden;
}

/* Geometric grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
}

/* Blue glow */
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 65% at 65% 35%, rgba(26,74,154,.45) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(196,163,90,.05) 0%, transparent 55%);
}

.hero__inner {
  position: relative; z-index: 2; width: 100%;
  padding: 4rem 0 5rem;
  display: grid; grid-template-columns: 1fr;
  gap: 3.5rem; align-items: center;
}

/* Badge */
.hero__badge {
  display: inline-flex; align-items: center; gap: .625rem;
  background: rgba(196,163,90,.1); border: 1px solid rgba(196,163,90,.2);
  color: var(--gold-light); padding: .4375rem 1rem;
  border-radius: var(--r-full); font-size: .8125rem; font-weight: 600;
  letter-spacing: .06em; margin-bottom: 1.5rem;
}
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }

/* Title */
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.125rem, 7vw, 3.875rem);
  font-weight: 700; color: #fff; line-height: 1.1;
  letter-spacing: -.025em; margin-bottom: 1.5rem;
}
.hero__title strong {
  font-weight: 700; font-style: italic; color: var(--gold);
  display: block;
}

/* Subtitle */
.hero__subtitle {
  font-size: clamp(.9375rem, 2vw, 1.0625rem);
  color: rgba(255,255,255,.6); line-height: 1.8;
  max-width: 520px; margin-bottom: 2.5rem;
}

/* CTAs */
.hero__ctas { display: flex; flex-wrap: wrap; gap: .875rem; margin-bottom: 2.75rem; }

/* Trust row */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  padding-top: 1.875rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hero__trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; color: rgba(255,255,255,.45);
}
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Visual panel */
.hero__visual { display: none; }
.hero__frame {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--navy-mid); aspect-ratio: 3/4;
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.hero__frame-ph {
  width: 100%; height: 100%; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy-mid), #0F2A5A);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* Stat cards on frame */
.hero__stat {
  position: absolute; z-index: 2;
  background: rgba(11,30,64,.88); backdrop-filter: blur(14px);
  border: 1px solid rgba(196,163,90,.18); border-radius: var(--r-md);
  padding: .875rem 1.25rem; display: flex; align-items: center; gap: .75rem;
}
.hero__stat--a { top: 1.5rem; left: -2rem; }
.hero__stat--b { bottom: 2rem; right: -1.5rem; }
.hero__stat-ico {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(196,163,90,.12); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.hero__stat-num { font-family: 'Playfair Display', serif; font-size: 1.375rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero__stat-lbl { font-size: .75rem; color: rgba(255,255,255,.5); white-space: nowrap; }

/* Wave divider */
.hero__wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 3; }
.hero__wave svg { width: 100%; display: block; }

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr .8fr; gap: 5rem; }
  .hero__visual { display: block; position: relative; }
}

/* ────────────────────────────────────────────
   PROBLEMS
──────────────────────────────────────────── */
.problems { background: var(--white); }
.problems__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
}
@media (min-width: 768px)  { .problems__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .problems__grid { grid-template-columns: repeat(4, 1fr); } }

.problem-card {
  background: var(--white); padding: 1.75rem 1.5rem;
  transition: background .2s var(--ease); position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.problem-card:hover { background: var(--navy-ghost); }
.problem-card:hover::before { transform: scaleX(1); }
.problem-card__icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--gray-50); display: flex; align-items: center; justify-content: center;
  color: var(--navy-soft); margin-bottom: 1rem; transition: all .25s var(--ease);
}
.problem-card:hover .problem-card__icon { background: var(--navy); color: var(--gold); }
.problem-card__title { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .375rem; line-height: 1.35; }
.problem-card__desc  { font-size: .8125rem; color: var(--text-md); line-height: 1.65; }

/* ────────────────────────────────────────────
   SERVICES
──────────────────────────────────────────── */
.services { background: var(--off-white); }
.services__grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 540px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 1.75rem 1.5rem; border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: all .25s var(--ease); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--navy-soft); transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease);
}
.service-card:hover { border-color: var(--gray-100); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card:hover::after { transform: scaleY(1); }
.service-card__icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--navy-pale); display: flex; align-items: center; justify-content: center;
  color: var(--navy-soft); margin-bottom: 1rem; transition: all .25s var(--ease);
}
.service-card:hover .service-card__icon { background: var(--navy); color: var(--gold); }
.service-card h3  { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; line-height: 1.3; }
.service-card p   { font-size: .875rem; color: var(--text-md); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.service-card__link {
  font-size: .8125rem; font-weight: 700; color: var(--navy-soft);
  display: inline-flex; align-items: center; gap: .3rem;
  text-transform: uppercase; letter-spacing: .04em; margin-top: auto;
  transition: gap .2s var(--ease), color .2s;
}
.service-card:hover .service-card__link { gap: .625rem; color: var(--navy); }

/* ────────────────────────────────────────────
   PROCESS
──────────────────────────────────────────── */
.process { background: var(--white); }
.process__inner {
  display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: start;
}
@media (min-width: 900px) { .process__inner { grid-template-columns: 5fr 6fr; } }

.process__intro .section__text { margin-bottom: 2rem; }
.process__bullets { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.process__bullet { display: flex; gap: .875rem; align-items: flex-start; }
.process__bullet-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--navy-pale); display: flex; align-items: center; justify-content: center;
  color: var(--navy-soft); flex-shrink: 0; margin-top: 1px;
}
.process__bullet strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.process__bullet p { font-size: .875rem; color: var(--text-md); line-height: 1.65; }

/* Timeline */
.timeline { position: relative; display: flex; flex-direction: column; }
.timeline::before {
  content: ''; position: absolute;
  left: 22px; top: 6px; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--navy-soft) 0%, var(--border) 100%);
}
.timeline__item { display: flex; gap: 1.375rem; padding-bottom: 1.75rem; position: relative; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: .9375rem; font-weight: 700;
  color: var(--gray-400); position: relative; z-index: 1;
  transition: all .25s var(--ease);
}
.timeline__item:hover .timeline__num,
.timeline__item--active .timeline__num {
  background: var(--navy); border-color: var(--navy); color: var(--gold);
}
.timeline__body { flex: 1; padding-top: .5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.timeline__item:last-child .timeline__body { border-bottom: none; }
.timeline__body h3 { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.timeline__body p  { font-size: .875rem; color: var(--text-md); line-height: 1.65; }

/* ────────────────────────────────────────────
   DIFFERENTIALS
──────────────────────────────────────────── */
.differentials { background: var(--off-white); }
.differentials__grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px)  { .differentials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .differentials__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .differentials__grid { grid-template-columns: repeat(4, 1fr); } }

.diff-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 2rem 1.625rem; border: 1px solid var(--border);
  transition: all .25s var(--ease);
}
.diff-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-100); transform: translateY(-2px); }
.diff-card__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--navy-pale); display: flex; align-items: center; justify-content: center;
  color: var(--navy-soft); margin-bottom: 1.25rem; transition: all .25s var(--ease);
}
.diff-card:hover .diff-card__icon { background: var(--navy); color: var(--gold); }
.diff-card h3 { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.diff-card p  { font-size: .875rem; color: var(--text-md); line-height: 1.7; }

/* ────────────────────────────────────────────
   NUMBERS — dark navy bg
──────────────────────────────────────────── */
.numbers {
  background: var(--navy); padding: var(--section-y) 0; position: relative; overflow: hidden;
}
.numbers::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.numbers .container { position: relative; z-index: 1; }
.numbers__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem;
}
@media (min-width: 768px) { .numbers__grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem 0; } }

.num-card { text-align: center; position: relative; }
.num-card + .num-card::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.07);
}
@media (max-width: 767px) { .num-card + .num-card::before { display: none; } }

.num-card__value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 8vw, 4rem);
  font-weight: 700; color: var(--gold); line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: .1rem;
  margin-bottom: .75rem;
}
.num-card__suffix { font-size: clamp(1.5rem, 4vw, 2.25rem); }
.num-card__divider { width: 28px; height: 1.5px; background: rgba(196,163,90,.3); margin: 0 auto .625rem; }
.num-card__label { font-size: .9rem; color: rgba(255,255,255,.45); font-weight: 500; }

/* ────────────────────────────────────────────
   CTA BANNER — mid-page
──────────────────────────────────────────── */
.cta-banner {
  background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: var(--section-y) 0;
}
.cta-banner__inner {}
.cta-banner__headline { text-align: center; margin-bottom: 3rem; }
.cta-banner__eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .6875rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--navy-soft); margin-bottom: 1rem;
}
.cta-banner__eyebrow::before,
.cta-banner__eyebrow::after { content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold); }

.cta-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700; color: var(--navy); line-height: 1.15;
  letter-spacing: -.02em; margin-bottom: 1rem;
}
.cta-banner__title em { font-style: italic; color: var(--navy-soft); }
.cta-banner__lead { font-size: 1.0625rem; color: var(--text-md); line-height: 1.8; max-width: 580px; margin: 0 auto; }

.cta-banner__channels {
  display: grid; grid-template-columns: 1fr; gap: .875rem; margin-bottom: 3rem;
}
@media (min-width: 640px)  { .cta-banner__channels { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cta-banner__channels { grid-template-columns: repeat(3, 1fr); } }

.cta-channel {
  display: flex; align-items: center; gap: 1.125rem;
  padding: 1.375rem 1.5rem; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: var(--white);
  transition: all .25s var(--ease); cursor: pointer;
}
.cta-channel:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.cta-channel:hover .cta-channel__arrow { transform: translateX(4px); opacity: 1; }
.cta-channel--whatsapp:hover { border-color: #25D366; }
.cta-channel--phone:hover    { border-color: var(--gold); }

.cta-channel__icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .25s var(--ease);
}
.cta-channel--whatsapp .cta-channel__icon { background: rgba(37,211,102,.1);  color: #1aaa52; }
.cta-channel--phone    .cta-channel__icon { background: var(--navy-pale);     color: var(--navy-soft); }
.cta-channel--form     .cta-channel__icon { background: rgba(59,107,196,.08); color: var(--navy-soft); }

.cta-channel__body { flex: 1; min-width: 0; }
.cta-channel__label { display: block; font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: .2rem; }
.cta-channel__value { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); }
.cta-channel__hint  { display: block; font-size: .8125rem; color: var(--text-soft); margin-top: .2rem; }
.cta-channel__arrow { color: var(--gray-200); transition: transform .2s var(--ease), opacity .2s; opacity: 0; flex-shrink: 0; }

.cta-banner__guarantees {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
@media (min-width: 640px)  { .cta-banner__guarantees { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cta-banner__guarantees { grid-template-columns: repeat(4, 1fr); } }

.cta-banner__guarantee {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.375rem 1.5rem; border-bottom: 1px solid var(--border);
}
.cta-banner__guarantee:last-child { border-bottom: none; }
@media (min-width: 640px) {
  .cta-banner__guarantee:nth-child(2) { border-bottom: 1px solid var(--border); }
  .cta-banner__guarantee:nth-last-child(-n+2) { border-bottom: none; }
}
@media (min-width: 1024px) {
  .cta-banner__guarantee { border-bottom: none; border-right: 1px solid var(--border); }
  .cta-banner__guarantee:last-child { border-right: none; }
}
.cta-banner__guarantee svg { color: var(--gold); flex-shrink: 0; }
.cta-banner__guarantee strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--navy); }
.cta-banner__guarantee span  { font-size: .8125rem; color: var(--text-soft); margin-top: .2rem; display: block; }
.cta-banner__sep { display: none; }

/* ────────────────────────────────────────────
   ABOUT
──────────────────────────────────────────── */
.about { background: var(--off-white); }
.about__grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
@media (min-width: 960px) { .about__grid { grid-template-columns: 1fr 1fr; } }

.about__media { position: relative; }
.about__img-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); position: relative;
}
.about__img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about__img-placeholder { width: 100%; height: 480px; background: var(--navy); }
.about__deco {
  position: absolute; z-index: -1; bottom: -20px; right: -20px;
  width: 120px; height: 120px; border: 1.5px solid rgba(196,163,90,.2);
  border-radius: var(--r-lg);
}
.about__badge {
  position: absolute; bottom: 1.75rem; left: -1.25rem;
  background: var(--navy); border-radius: var(--r-md);
  padding: 1rem 1.375rem; display: flex; gap: .75rem; align-items: center;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(196,163,90,.15);
}
.about__badge-icon { width: 36px; height: 36px; background: rgba(196,163,90,.12); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.about__badge strong { display: block; color: #fff; font-size: .9375rem; }
.about__badge span   { display: block; font-size: .8125rem; color: rgba(255,255,255,.45); }

.about__text-lg { font-size: 1.0625rem; color: var(--text-md); line-height: 1.85; margin-bottom: 1rem; }
.about__text    { font-size: 1rem; color: var(--text-md); line-height: 1.85; margin-bottom: 1rem; }

.about__vals { display: flex; flex-direction: column; gap: .875rem; margin: 1.875rem 0; }
.about__val {
  display: flex; gap: .875rem; padding: 1.125rem;
  background: var(--white); border-radius: var(--r-sm); border: 1px solid var(--border);
  transition: border-color .2s;
}
.about__val:hover { border-color: var(--gray-100); box-shadow: var(--shadow-xs); }
.about__val-icon { width: 36px; height: 36px; background: var(--navy-pale); border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; color: var(--navy-soft); flex-shrink: 0; }
.about__val strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.about__val p { font-size: .875rem; color: var(--text-md); line-height: 1.6; }

.about__seals { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: 1.75rem; }
.about__seal {
  display: flex; align-items: center; gap: .4375rem; font-size: .8125rem; font-weight: 600;
  color: var(--text-md); background: var(--white); padding: .4375rem .875rem;
  border-radius: var(--r-full); border: 1px solid var(--border);
}
.about__seal svg { color: var(--gold); }

/* ────────────────────────────────────────────
   PROFESSIONAL
──────────────────────────────────────────── */
.professional { background: var(--white); }
.prof__card {
  background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; display: grid; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .prof__card { grid-template-columns: 300px 1fr; } }

.prof__photo { min-height: 340px; position: relative; overflow: hidden; background: var(--navy); }
.prof__photo-ph { width: 100%; min-height: 340px; background: linear-gradient(145deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; }
.prof__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.prof__overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(11,30,64,.9), transparent); padding: 1.75rem 1.5rem 1.25rem; }
.prof__overlay-name { font-family: 'Playfair Display', serif; font-size: 1.1875rem; font-weight: 700; color: #fff; }
.prof__overlay-role { font-size: .8125rem; color: rgba(255,255,255,.55); margin-top: .25rem; }

.prof__body { padding: 2rem; }
.prof__oab { display: inline-flex; align-items: center; gap: .4375rem; font-size: .75rem; font-weight: 700; color: var(--navy-soft); background: var(--navy-pale); padding: .375rem .875rem; border-radius: var(--r-full); margin-bottom: 1.625rem; letter-spacing: .04em; }
.prof__specs { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 1.75rem; }
.prof__spec { display: flex; align-items: flex-start; gap: .75rem; font-size: .9375rem; color: var(--text-md); }
.prof__spec svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.prof__social { display: flex; flex-wrap: wrap; gap: .75rem; }
.prof__social-link { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; color: var(--text-md); padding: .5rem 1rem; border-radius: var(--r-sm); border: 1.5px solid var(--border); transition: all .2s var(--ease); }
.prof__social-link:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-ghost); }

/* ────────────────────────────────────────────
   FAQ
──────────────────────────────────────────── */
.faq { background: var(--off-white); }
.faq__layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 960px) { .faq__layout { grid-template-columns: 2fr 3fr; } }

.faq__search-wrap { position: relative; }
.faq__search-wrap svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-soft); pointer-events: none; }
.faq__search {
  width: 100%; padding: .875rem 1rem .875rem 2.875rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: .9375rem; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.faq__search:focus { outline: none; border-color: var(--navy-soft); box-shadow: 0 0 0 3px rgba(26,74,154,.1); }

.faq__extra { margin-top: 2.25rem; }
.faq__extra-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: .875rem; }
.faq__extra p { font-size: .9375rem; color: var(--text-md); line-height: 1.75; margin-bottom: 1.375rem; }

.faq__list { display: flex; flex-direction: column; gap: .5rem; }
.faq__item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s; }
.faq__item.active { border-color: var(--navy-soft); }
.faq__item.hidden { display: none; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .875rem; padding: 1.125rem 1.375rem; text-align: left; font-size: .9375rem; font-weight: 600; color: var(--navy); background: transparent; transition: background .2s; }
.faq__item.active .faq__q { background: var(--navy-ghost); }
.faq__q span { flex: 1; }
.faq__chevron { width: 30px; height: 30px; border-radius: 50%; background: var(--gray-50); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--navy-soft); flex-shrink: 0; transition: all .25s var(--ease); }
.faq__item.active .faq__chevron { background: var(--navy); border-color: var(--navy); color: var(--gold); transform: rotate(180deg); }
.faq__a { padding: 0 1.375rem 1.25rem; }
.faq__a p { font-size: .9375rem; color: var(--text-md); line-height: 1.8; }

/* ────────────────────────────────────────────
   CTA FINAL — dark navy bg
──────────────────────────────────────────── */
.cta-final { background: var(--navy); padding: var(--section-y) 0; position: relative; overflow: hidden; }
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final__grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: start; }
@media (min-width: 960px) { .cta-final__grid { grid-template-columns: 1fr 1fr; } }

.cta-final__title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 1.125rem; letter-spacing: -.02em;
}
.cta-final__title em { font-style: italic; color: var(--gold); }
.cta-final__text { font-size: 1.0625rem; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 2.25rem; }

.cta-final__actions { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2rem; }
.cta-final__checks { display: flex; flex-wrap: wrap; gap: .875rem 1.5rem; }
.cta-final__check { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.5); }
.cta-final__check svg { color: var(--gold); flex-shrink: 0; }

/* Form card */
.form-card { background: var(--white); border-radius: var(--r-xl); padding: 2.25rem; box-shadow: var(--shadow-xl); }
.form-card__title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: .375rem; }
.form-card__sub { font-size: .9375rem; color: var(--text-md); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.125rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.125rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .4375rem; }
.form-input {
  width: 100%; padding: .8125rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: inherit; font-size: .9375rem; color: var(--text); background: var(--off-white);
  transition: all .2s var(--ease);
}
.form-input:focus { outline: none; border-color: var(--navy-soft); background: var(--white); box-shadow: 0 0 0 3px rgba(26,74,154,.08); }
.form-input--error { border-color: #e53e3e; }
.form-textarea { resize: vertical; min-height: 108px; }
.form-error { display: block; font-size: .8125rem; color: #e53e3e; margin-top: .3rem; }
.form-privacy { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--text-soft); margin-bottom: 1.25rem; }
.form-privacy a { color: var(--navy-soft); transition: color .2s; }
.form-privacy a:hover { color: var(--navy); text-decoration: underline; }

.alert { display: flex; align-items: flex-start; gap: .75rem; padding: .9375rem 1.125rem; border-radius: var(--r-sm); margin-bottom: 1.125rem; font-size: .9375rem; }
.alert--success { background: rgba(16,185,129,.07); border: 1.5px solid rgba(16,185,129,.25); color: #065f46; }
.alert--error   { background: rgba(229,62,62,.07);  border: 1.5px solid rgba(229,62,62,.25);  color: #9b1c1c; }

/* ────────────────────────────────────────────
   WHATSAPP FLOAT
──────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800;
  display: flex; align-items: center; gap: .625rem;
  background: #25D366; color: #fff; border-radius: var(--r-full);
  padding: .875rem 1.25rem; font-weight: 600; font-size: .875rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  max-width: 56px; overflow: hidden;
  transition: max-width .35s var(--ease-spring), box-shadow .25s;
}
.wa-float:hover { max-width: 220px; box-shadow: 0 6px 28px rgba(37,211,102,.5); color: #fff; }
.wa-float__label { white-space: nowrap; opacity: 0; transition: opacity .25s .1s var(--ease); }
.wa-float:hover .wa-float__label { opacity: 1; }

/* Mobile sticky CTA */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.08);
  padding: .875rem 1.125rem; gap: .625rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
@media (max-width: 640px) {
  .sticky-cta { display: flex; }
  .sticky-cta .btn { flex: 1; font-size: .875rem; padding: .75rem; }
  body { padding-bottom: 68px; }
}

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 4.5rem 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border-dark);
}
@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.75fr; } }

.footer__brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem; font-weight: 700; color: #fff; letter-spacing: .01em;
}
.footer__brand .logo-text span { color: var(--gold); }
.footer__brand .logo-sub { font-size: .6rem; color: rgba(255,255,255,.28); letter-spacing: .16em; text-transform: uppercase; margin-top: 3px; }
.footer__desc { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.75; margin: 1rem 0 1.375rem; max-width: 260px; }
.footer__social { display: flex; gap: .625rem; }
.footer__social a { width: 36px; height: 36px; background: rgba(255,255,255,.05); border-radius: var(--r-sm); border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: all .2s var(--ease); }
.footer__social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer__col-title { font-size: .6875rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__contact { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact-row { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: rgba(255,255,255,.5); }
.footer__contact-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer__contact-row a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer__contact-row a:hover { color: var(--gold); }
.footer__map { margin: 2rem 0; border-radius: var(--r-md); overflow: hidden; opacity: .7; }
.footer__bottom { display: flex; flex-direction: column; align-items: center; gap: .875rem; padding: 1.5rem 0; font-size: .8125rem; color: rgba(255,255,255,.28); }
@media (min-width: 640px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__bottom-right { display: flex; flex-wrap: wrap; gap: 1.125rem; align-items: center; }
.footer__bottom-right a { color: rgba(255,255,255,.28); transition: color .2s; }
.footer__bottom-right a:hover { color: var(--gold); }
.footer__seal { display: flex; align-items: center; gap: .375rem; }
.footer__seal svg { color: var(--gold); }

/* ────────────────────────────────────────────
   INTERNAL PAGES
──────────────────────────────────────────── */
.page-hero {
  background: var(--navy); color: #fff;
  padding: calc(var(--header-h) + 3.5rem) 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.875rem, 5vw, 3rem); font-weight: 700; margin-bottom: .875rem; letter-spacing: -.02em; }
.page-hero p  { font-size: 1.0625rem; color: rgba(255,255,255,.6); max-width: 560px; line-height: 1.75; }
.page-hero__ctas { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: 2rem; }

.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: rgba(255,255,255,.35); margin-bottom: 1.375rem; flex-wrap: wrap; }
.breadcrumb li + li::before { content: '/'; margin-right: .5rem; }
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: rgba(255,255,255,.7); }

/* ────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────── */
.contato-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 900px) { .contato-grid { grid-template-columns: 1fr 1fr; } }
.contato-item { display: flex; gap: 1.125rem; margin-bottom: 1.75rem; }
.contato-item__icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--navy-pale); display: flex; align-items: center; justify-content: center; color: var(--navy-soft); flex-shrink: 0; }
.contato-item h3 { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.contato-item a  { font-size: .9375rem; color: var(--navy-soft); display: block; transition: color .2s; }
.contato-item a:hover { color: var(--navy); text-decoration: underline; }
.contato-item p  { font-size: .875rem; color: var(--text-soft); }

/* ────────────────────────────────────────────
   LEGAL CONTENT
──────────────────────────────────────────── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 2.75rem 0 .875rem; }
.legal-content p  { font-size: .9375rem; color: var(--text-md); line-height: 1.85; margin-bottom: .875rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { list-style: disc; font-size: .9375rem; color: var(--text-md); line-height: 1.8; margin-bottom: .4rem; }
.legal-content a  { color: var(--navy-soft); } .legal-content a:hover { color: var(--navy); text-decoration: underline; }

/* ────────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* Hero animations */
.fade-in-up   { animation: fadeUp .85s var(--ease-out) both; }
.fade-in-right { animation: fadeRight .85s var(--ease-out) .2s both; }
@keyframes fadeUp    { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeRight { from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:none; } }
