/* ===================================================
   ReclamaTuSOAT — Styles
   Archetype: Editorial Dark Warm (Navy Blue + Gold)
   =================================================== */

/* ---- Custom Properties ---- */
:root {
  --bg:        #07101E;
  --bg-2:      #0D1929;
  --bg-3:      #122033;
  --bg-card:   #0F1E30;
  --navy:      #0A1628;
  --cream:     #F0EBE0;
  --cream-2:   #C8BFA8;
  --cream-3:   #7A7262;
  --gold:      #C9A028;
  --gold-2:    #E8BC3A;
  --gold-dark: #8A6E18;
  --gold-bg:   rgba(201,160,40,0.12);
  --line:      rgba(201,160,40,0.18);
  --line-soft: rgba(240,235,224,0.08);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.15, 1);

  --nav-h: 72px;
  --max-w: 1200px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---- Typography ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--cream);
  margin-bottom: 2.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-2);
}
.section-title.light { color: var(--cream); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--gold-dark);
  border-radius: 2rem;
  background: var(--gold-bg);
  margin-bottom: 1.25rem;
}
.section-tag.light { color: var(--gold-2); border-color: rgba(232,188,58,0.3); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: #07101E;
  box-shadow: 0 4px 24px rgba(201,160,40,0.3);
}
.btn-gold:hover {
  background: var(--gold-2);
  box-shadow: 0 8px 32px rgba(201,160,40,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-2);
  border: 1px solid var(--line-soft);
}
.btn-ghost:hover {
  background: var(--bg-3);
  color: var(--cream);
  border-color: var(--line);
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-large {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

/* ---- Utilities ---- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section-pad { padding-block: clamp(5rem, 10vw, 8rem); }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-split] { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, border-bottom 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(7,16,30,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(201,160,40,0.5));
}
.logo-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.logo-text strong { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-2);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--gold-2); }

.nav-cta { margin-left: 1rem; padding: 0.6rem 1.3rem; font-size: 0.88rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem var(--pad) 2rem;
  background: rgba(7,16,30,0.98);
  border-top: 1px solid var(--line);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem;
  color: var(--cream-2);
  font-weight: 500;
}
.nav-mobile a:hover { color: var(--gold-2); }
.nav-mobile .btn { align-self: flex-start; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  padding-bottom: 4rem;
  position: relative;
  overflow: visible;
}

.hero-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(10,22,40,0.95) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201,160,40,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(12,28,50,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(201,160,40,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 600px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,160,40,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(201,160,40,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
  max-width: 14ch;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-2);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--cream-2);
  max-width: 46ch;
  line-height: 1.7;
}
.hero-sub strong { color: var(--gold-2); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.badge { text-align: center; }
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.72rem;
  color: var(--cream-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.badge-sep {
  font-size: 1.5rem;
  color: var(--line);
  line-height: 1;
  user-select: none;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,160,40,0.2);
  animation: ringPulse 4s ease-in-out infinite;
}
.r1 { width: 320px; height: 320px; animation-delay: 0s; }
.r2 { width: 440px; height: 440px; animation-delay: 1.5s; border-color: rgba(201,160,40,0.08); }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.04); opacity: 0.6; }
}

.hero-card-float {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 2rem;
  width: 280px;
  box-shadow:
    0 0 0 1px rgba(201,160,40,0.08),
    0 32px 64px rgba(0,0,0,0.5),
    0 0 80px rgba(201,160,40,0.06);
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hc-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(201,160,40,0.5));
}
.hc-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.hc-sub {
  font-size: 0.72rem;
  color: var(--cream-3);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.hc-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--bg-3);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.hc-bar-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-2));
  border-radius: 2px;
  animation: barGrow 2s 1s var(--ease-out) both;
}
@keyframes barGrow {
  from { width: 0%; }
  to   { width: 68%; }
}
.hc-status {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hero-inner { align-items: center; }
  .hero-title { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { height: 280px; }
  .r2 { display: none; }
}
@media (max-width: 480px) {
  .hero-visual { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero, .btn-ghost { justify-content: center; }
}

/* ============================================================
   SOAT INFO
   ============================================================ */
.soat-info { background: var(--bg-2); }
.soat-info .section-title { max-width: 18ch; }

.soat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.soat-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.soat-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}
.soat-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.soat-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.soat-card p { font-size: 0.92rem; color: var(--cream-2); line-height: 1.7; }
.soat-card p strong { color: var(--gold-2); }

.soat-callout {
  background: var(--gold-bg);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.soat-callout p {
  font-size: 1rem;
  color: var(--cream-2);
  max-width: 52ch;
}
.soat-callout p strong { color: var(--gold-2); }

@media (max-width: 768px) {
  .soat-grid { grid-template-columns: 1fr; }
  .soat-callout { flex-direction: column; }
}

/* ============================================================
   PROCESO
   ============================================================ */
.proceso { background: var(--bg); }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 1rem;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s;
  position: relative;
}
.step:hover { border-color: var(--line); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.step-body p { font-size: 0.9rem; color: var(--cream-2); line-height: 1.7; }
.step-body p strong { color: var(--gold-2); }

.step-connector {
  align-self: center;
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.step-connector::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  color: var(--gold);
  background: var(--bg);
  padding: 0 0.25rem;
}

@media (max-width: 1024px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-connector {
    width: 1px;
    height: 2rem;
    margin-inline: 2rem;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    align-self: auto;
  }
  .step-connector::after { content: "↓"; }
}

/* ============================================================
   POR QUÉ ELEGIRNOS
   ============================================================ */
.porque {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.porque-mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(201,160,40,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,160,40,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.razones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.razon {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.razon:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}
.razon-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-bg);
  border: 1px solid var(--gold-dark);
  border-radius: 0.75rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.razon h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.razon p { font-size: 0.88rem; color: var(--cream-2); line-height: 1.7; }

@media (max-width: 900px) { .razones-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .razones-grid { grid-template-columns: 1fr; } }

/* ============================================================
   QUIÉNES SOMOS
   ============================================================ */
.nosotros { background: var(--bg); }

.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.nosotros-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.perfil-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  width: 300px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 40px rgba(201,160,40,0.06);
  position: relative;
  z-index: 1;
}
.perfil-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold-dark);
  margin: 0 auto 1.25rem;
  overflow: hidden;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(201,160,40,0.1), 0 8px 24px rgba(0,0,0,0.4);
}
.perfil-nombre {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.perfil-cargo {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.perfil-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.perfil-tags span {
  font-size: 0.7rem;
  background: var(--gold-bg);
  border: 1px solid var(--gold-dark);
  color: var(--gold-2);
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.nosotros-ornament {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-size: 8rem;
  opacity: 0.05;
  filter: drop-shadow(0 0 20px rgba(201,160,40,0.3));
  pointer-events: none;
  line-height: 1;
}

.nosotros-texto { display: flex; flex-direction: column; gap: 0; }
.nosotros-p {
  font-size: 1rem;
  color: var(--cream-2);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.nosotros-p strong { color: var(--cream); font-weight: 600; }
.nosotros-texto .btn { margin-top: 0.75rem; align-self: flex-start; }

@media (max-width: 768px) {
  .nosotros-inner { grid-template-columns: 1fr; }
  .nosotros-visual { order: -1; }
  .nosotros-texto .btn { align-self: stretch; text-align: center; justify-content: center; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-2); }
.faq-container { max-width: 760px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:first-child { border-top: 1px solid var(--line-soft); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}
.faq-q:hover { color: var(--gold-2); }
.faq-q[aria-expanded="true"] { color: var(--gold-2); }

.faq-chevron {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a:not([hidden]) {
  max-height: 300px;
}
.faq-a[hidden] { display: block !important; }

.faq-a p {
  padding-bottom: 1.4rem;
  font-size: 0.93rem;
  color: var(--cream-2);
  line-height: 1.75;
}
.faq-a p strong { color: var(--gold-2); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,160,40,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 100% 50% at 10% 90%, rgba(201,160,40,0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: meshDrift 12s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.08) translateY(-2%); }
}

.cta-inner { position: relative; max-width: 720px; }

.cta-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.cta-title em { color: var(--gold-2); font-style: italic; }
.cta-sub {
  font-size: 1.05rem;
  color: var(--cream-2);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--cream-3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040C18;
  border-top: 1px solid var(--line);
  padding-block: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-brand .logo-icon { font-size: 1.75rem; }
.footer-brand .logo-text { font-size: 1.05rem; }
.footer-brand p { font-size: 0.8rem; color: var(--cream-3); margin-top: 0.25rem; line-height: 1.5; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--cream-3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-2); }

.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact p { font-size: 0.88rem; }
.footer-contact a {
  color: var(--cream-2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-2); }
.footer-slogan em { color: var(--gold); font-style: italic; font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--cream-3); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-contact { align-items: center; text-align: center; }
}

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.wa-float svg { flex-shrink: 0; }

.wa-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .wa-tooltip { display: none; }
}

/* ============================================================
   SCROLL ANIMATIONS ENTRY
   ============================================================ */
.reveal { transition-delay: calc(var(--d, 0) * 0.12s); }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .kicker-dot { animation: none; }
  .ringPulse, .floatCard, .barGrow, .meshDrift { animation: none; }
}
