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

:root {
  --navy:    #0F2240;
  --navy2:   #1A3560;
  --gold:    #C59B3A;
  --gold2:   #E0B855;
  --cream:   #F7F4EE;
  --white:   #FFFFFF;
  --red:     #B82020;
  --red2:    #D93030;
  --green:   #1DAA61;
  --green2:  #25D366;
  --text:    #1A1A2E;
  --muted:   #5a6a80;
  --border:  #D8CCAA;
  --shadow:  rgba(15,34,64,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── UTILITY ─────────────────────────────────── */
.container { max-width: 880px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ─── STICKY TOP BAR ──────────────────────────── */
.topbar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px var(--shadow);
}
.topbar a {
  color: var(--gold2);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}
.topbar a:hover { opacity: .8; }
.topbar .sep { opacity: .4; margin: 0 10px; }

/* ─── URGENCY BANNER ──────────────────────────── */
.urgency-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
}
.urgency-banner strong { font-size: 1rem; }
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:.4; transform: scale(1.4); }
}

/* ─── HERO ────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 60%, #1E4080 100%);
  color: var(--white);
  padding: 80px 20px 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 80% 20%, rgba(197,155,58,.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 10% 80%, rgba(197,155,58,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(197,155,58,.18);
  border: 1px solid rgba(197,155,58,.4);
  color: var(--gold2);
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .accent { color: var(--gold2); }
.hero .subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 300;
  opacity: .88;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero .subtitle strong { font-weight: 600; color: var(--gold2); }

/* ─── CTA BUTTON ──────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(29,170,97,.4);
  transition: transform .18s, box-shadow .18s, filter .18s;
  letter-spacing: .01em;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(29,170,97,.5);
  filter: brightness(1.06);
}
.btn-cta svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-cta--gold {
  background: linear-gradient(135deg, #C59B3A 0%, #E0B855 100%);
  box-shadow: 0 6px 30px rgba(197,155,58,.35);
}
.btn-cta--gold:hover { box-shadow: 0 10px 40px rgba(197,155,58,.48); }
.btn-cta--small { font-size: .92rem; padding: 13px 26px; }
.cta-sub {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  opacity: .7;
  margin-top: 10px;
  letter-spacing: .01em;
}

/* ─── CREDIBILITY BAR ─────────────────────────── */
.cred-bar {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  padding: 20px;
}
.cred-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
  list-style: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cred-bar ul li::before { content: '✦ '; color: var(--gold); }

/* ─── SECTION GENERIC ─────────────────────────── */
.section { padding: 72px 20px; }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--cream { background: var(--cream); }
.section--gold  { background: linear-gradient(135deg, #0F2240 0%, #1A3560 100%); color: var(--white); }

.section-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 24px;
}
h2.section-title--white { color: var(--white); }
.section-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 720px;
}
.section--navy .section-lead,
.section--gold .section-lead { color: rgba(255,255,255,.75); }

p { margin-bottom: 16px; }

/* ─── ORIGIN BLOCK ────────────────────────────── */
.origin-block {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  border-radius: 0 8px 8px 0;
  margin: 36px 0;
}
.origin-block p { margin-bottom: 10px; font-size: 1rem; line-height: 1.75; }
.origin-block p:last-child { margin-bottom: 0; }

/* ─── TIMELINE ────────────────────────────────── */
.timeline { margin: 40px 0; }
.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-dot {
  width: 44px; height: 44px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.1;
  text-align: center;
}
.timeline-content { flex: 1; padding-top: 8px; }
.timeline-content strong {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}
.timeline-content span { font-size: .9rem; color: var(--muted); }
.timeline-item--highlight .timeline-dot { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.timeline-item--highlight .timeline-content strong { color: var(--red); }

/* ─── PROFILES GRID ───────────────────────────── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s, box-shadow .2s;
}
.profile-card.visible { opacity: 1; transform: translateY(0); }
.profile-card:hover { box-shadow: 0 8px 32px rgba(15,34,64,.12); }
.profile-card .check {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #0F2240, #1A3560);
  color: var(--gold2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 16px;
}
.profile-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.profile-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; margin: 0; }

.big-callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
  color: var(--white);
  border: 1px solid rgba(197,155,58,.3);
}
.big-callout p { font-size: 1.12rem; line-height: 1.7; opacity: .9; margin-bottom: 28px; }
.big-callout p strong { color: var(--gold2); font-weight: 700; }

/* ─── TABLE ───────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  margin: 28px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.data-table th {
  background: var(--navy);
  color: var(--gold2);
  padding: 13px 18px;
  text-align: left;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.data-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #EAE5D8;
  background: var(--white);
  color: var(--text);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr.highlight td {
  background: #FFF8E8;
  font-weight: 700;
  color: var(--red);
}
.data-table tr:hover td { background: #FAF6EC; }

/* ─── STEPS ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 40px;
}
.step {
  padding: 32px 28px;
  position: relative;
  text-align: center;
}
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.step-num {
  width: 54px; height: 54px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(197,155,58,.3);
}
.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step p { font-size: .85rem; color: rgba(255,255,255,.7); margin: 0; line-height: 1.6; }

/* ─── VALUE BOX ───────────────────────────────── */
.value-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 36px;
  margin: 36px 0;
  text-align: center;
  box-shadow: 0 4px 24px rgba(197,155,58,.15);
}
.value-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.value-box p { font-size: .95rem; color: var(--muted); max-width: 580px; margin: 0 auto 20px; }

.checklist { list-style: none; text-align: left; max-width: 560px; margin: 20px auto; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #EAE5D8;
  font-size: .94rem;
  line-height: 1.5;
}
.checklist li:last-child { border: none; }
.checklist li::before {
  content: '📌';
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── FAQ ─────────────────────────────────────── */
.faq-list { margin-top: 36px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: .96rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.faq-q .faq-icon {
  width: 26px; height: 26px;
  background: var(--navy);
  color: var(--gold2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: .92rem;
  line-height: 1.75;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }
.faq-a p { margin-bottom: 8px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ─── LEGAL GRID ──────────────────────────────── */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.legal-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(197,155,58,.25);
  border-radius: 10px;
  padding: 20px;
}
.legal-card .tag {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 8px;
  display: block;
}
.legal-card p { font-size: .85rem; opacity: .8; margin: 0; line-height: 1.55; }

/* ─── FINAL CTA ───────────────────────────────── */
.final-cta {
  background: linear-gradient(160deg, var(--navy) 0%, #0a1a33 100%);
  padding: 90px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 500px at 50% 50%, rgba(197,155,58,.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.final-cta h2 .accent { color: var(--gold2); }
.final-cta p {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.final-phone {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--gold2);
  margin-top: 24px;
  display: block;
}

/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: #080F1C;
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: 36px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  line-height: 1.8;
}
footer a { color: var(--gold); text-decoration: none; }
footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  display: block;
}

/* ─── FLOATING WHATSAPP ───────────────────────── */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px; height: 60px;
  background: var(--green2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  text-decoration: none;
  animation: bounce 2.5s ease-in-out infinite;
}
.wpp-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ─── SCROLL ANIMATIONS ───────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 680px) {
  .hero { padding: 60px 20px 70px; }
  .profiles-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step:not(:last-child)::after { content: '↓'; right: 50%; top: unset; bottom: -12px; transform: translateX(50%); }
  .topbar { font-size: .74rem; }
  .data-table { font-size: .78rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
  .faq-q { font-size: .88rem; padding: 16px 18px; }
  .final-cta { padding: 70px 20px; }
}
