/* ============================================================
   CAMORA IA — styles.css
   Futurista premium · Navy + Indigo + Cyan + Emerald
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --indigo:       #7B6FE8;
  --indigo-d:     #4E43B5;
  --indigo-bg:    rgba(123,111,232,0.10);
  --indigo-glow:  rgba(123,111,232,0.20);
  --cyan:         #00C4FF;
  --cyan-bg:      rgba(0,196,255,0.08);
  --emerald:      #1D9E75;
  --emerald-l:    #2EC98F;
  --emerald-bg:   rgba(29,158,117,0.10);
  --navy:         #07091F;
  --navy2:        #0B0E2C;
  --navy3:        #0F1238;
  --card:         rgba(255,255,255,0.04);
  --card-b:       rgba(255,255,255,0.08);
  --card-hover:   rgba(255,255,255,0.07);
  --text:         #E8E8F4;
  --text2:        #9494B8;
  --text3:        #5A5A7A;
  --white:        #FFFFFF;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-xs:    6px;
  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --max-w:        1200px;
  --section-pad:  clamp(60px,8vw,120px) clamp(20px,5vw,40px);
}

/* ── RESET ───────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--indigo-d); border-radius: 3px; }

/* ── BG DECORATION ───────────────────────────────────────────── */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(123,111,232,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,111,232,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.bg-glow {
  position: fixed; border-radius: 50%;
  filter: blur(120px); pointer-events: none; z-index: 0;
}
.bg-glow-1 {
  width: 700px; height: 700px; top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(123,111,232,.12), transparent 70%);
}
.bg-glow-2 {
  width: 600px; height: 600px; bottom: 10%; right: -200px;
  background: radial-gradient(circle, rgba(0,196,255,.08), transparent 70%);
}

/* ── HEADER / NAV ────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(7,9,31,0.80);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px,4vw,40px); height: 68px; gap: 20px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 800;
  letter-spacing: -0.3px; flex-shrink: 0;
}
.nav-brand img { width: 36px; height: 36px; object-fit: contain; }
.nav-brand .brand-ia { color: var(--indigo); }
nav ul {
  display: flex; gap: 6px; align-items: center;
}
nav ul li a {
  padding: 7px 14px; border-radius: var(--radius-xs);
  font-size: 0.875rem; font-weight: 500; color: var(--text2);
  transition: color .2s, background .2s;
}
nav ul li a:hover { color: var(--text); background: var(--card); }
.nav-cta {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-d)) !important;
  color: var(--white) !important;
  padding: 8px 20px !important; border-radius: var(--radius-xs) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(123,111,232,.35);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 6px 20px rgba(123,111,232,.45) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px clamp(16px,4vw,40px) 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(7,9,31,0.95);
}
.mobile-nav a {
  padding: 10px 14px; border-radius: var(--radius-xs);
  font-size: .9rem; font-weight: 500; color: var(--text2);
  transition: all .2s;
}
.mobile-nav a:hover { color: var(--text); background: var(--card); }
.mobile-nav .nav-cta {
  margin-top: 6px; text-align: center;
  background: linear-gradient(135deg,var(--indigo),var(--indigo-d)) !important;
  color: white !important;
}

/* ── SECTION BASE ────────────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--section-pad); }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--emerald-l); margin-bottom: 16px;
}
.section-tag::before { content:''; width:18px; height:2px; background:var(--emerald-l); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px,4.5vw,48px);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(15px,1.8vw,18px); color: var(--text2);
  line-height: 1.7; max-width: 600px;
}
.accent-indigo { color: var(--indigo); }
.accent-cyan   { color: var(--cyan); }
.accent-emerald{ color: var(--emerald-l); }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(60px,8vw,100px) clamp(20px,4vw,40px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--emerald-l); margin-bottom: 20px;
  padding: 6px 14px; border-radius: 20px;
  background: var(--emerald-bg); border: 1px solid rgba(46,201,143,.2);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px,5.5vw,64px);
  font-weight: 800; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title .line2 { color: var(--indigo); }
.hero-title .line3 { color: var(--cyan); }
.hero-sub {
  font-size: clamp(15px,1.8vw,18px); color: var(--text2);
  line-height: 1.75; margin-bottom: 36px; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(12px,1.5vw,14px) clamp(22px,2.5vw,28px);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg,var(--indigo),var(--indigo-d));
  color: var(--white); font-weight: 600; font-family: var(--font-body);
  font-size: clamp(13px,1.5vw,15px);
  border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(123,111,232,.35);
  transition: all .25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(123,111,232,.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(12px,1.5vw,14px) clamp(22px,2.5vw,28px);
  border-radius: var(--radius-sm);
  background: transparent; color: var(--text);
  font-weight: 500; font-family: var(--font-body);
  font-size: clamp(13px,1.5vw,15px);
  border: 1px solid var(--card-b); cursor: pointer;
  transition: all .25s;
}
.btn-ghost:hover { background: var(--card); border-color: rgba(255,255,255,.15); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card-stack {
  position: relative; height: 460px;
}
.hcard {
  position: absolute; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--card-b);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
}
/* Main chat card */
.hcard-chat {
  width: 280px; top: 0; right: 20px;
  padding: 0; overflow: hidden;
}
.hcard-chat-header {
  background: #128C7E; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.hcard-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg,var(--indigo),var(--emerald));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: white; flex-shrink: 0;
}
.hcard-chat-name { font-size: 13px; font-weight: 600; color: white; }
.hcard-chat-status { font-size: 10px; color: rgba(255,255,255,.7); }
.hcard-chat-body {
  padding: 12px; background: #0A0F20;
  display: flex; flex-direction: column; gap: 8px;
}
.bubble {
  max-width: 85%; padding: 8px 11px; border-radius: 10px;
  font-size: 12px; line-height: 1.5;
}
.bubble.in { background: #1A2540; color: #CCD; align-self: flex-start; border-bottom-left-radius: 3px; }
.bubble.bot {
  background: linear-gradient(135deg,#1a1845,#251e5c);
  color: #dde; align-self: flex-start;
  border-bottom-left-radius: 3px;
  border-left: 2px solid var(--indigo);
}
.bubble.bot-label { font-size: 9px; color: var(--indigo); font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
/* CRM card */
.hcard-crm {
  width: 220px; bottom: 30px; left: 0; padding: 16px;
  animation: float 4s ease-in-out infinite;
}
/* Metrics card */
.hcard-metrics {
  width: 180px; top: 160px; left: 30px; padding: 16px;
  animation: float 4s ease-in-out infinite .8s;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.metric-mini { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
.metric-mini:last-child { margin-bottom: 0; }
.metric-mini-val {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg,var(--indigo),var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.metric-mini-lbl { font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: .6px; }
.crm-lead { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.crm-lead:last-child { margin-bottom: 0; }
.lead-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lead-dot.hot { background: #EF4444; box-shadow: 0 0 6px #EF4444; }
.lead-dot.warm { background: #F59E0B; box-shadow: 0 0 6px #F59E0B; }
.lead-dot.new  { background: var(--indigo); box-shadow: 0 0 6px var(--indigo); }
.lead-info { flex: 1; min-width: 0; }
.lead-name { font-size: 11px; font-weight: 600; color: var(--text); }
.lead-svc  { font-size: 10px; color: var(--text3); }
.crm-title { font-size: 10px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.metrics-title { font-size: 10px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }

/* ── DOLOR ───────────────────────────────────────────────────── */
#dolor { background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%); }
.dolor-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 16px; margin-top: 48px;
}
.dolor-card {
  padding: 24px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--card-b);
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .3s;
}
.dolor-card:hover { background: var(--card-hover); border-color: rgba(123,111,232,.25); transform: translateY(-2px); }
.dolor-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.2);
}
.dolor-content h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.dolor-content p  { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── SERVICIOS ───────────────────────────────────────────────── */
#servicios { background: var(--navy2); }
.servicios-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 20px; margin-top: 48px;
}
.svc-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--card-b);
  transition: all .3s; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.svc-card.c1::before { background: linear-gradient(90deg,var(--indigo),var(--indigo-d)); }
.svc-card.c2::before { background: linear-gradient(90deg,#25D366,#128C7E); }
.svc-card.c3::before { background: linear-gradient(90deg,var(--cyan),var(--indigo)); }
.svc-card.c4::before { background: linear-gradient(90deg,var(--emerald),var(--emerald-l)); }
.svc-card.c5::before { background: linear-gradient(90deg,#F59E0B,#EF4444); }
.svc-card.c6::before { background: linear-gradient(90deg,var(--indigo),var(--cyan)); }
.svc-card:hover { background: var(--card-hover); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.svc-ico {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; background: var(--indigo-bg); border: 1px solid var(--card-b);
}
.svc-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.svc-card p  { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── CÓMO FUNCIONA ───────────────────────────────────────────── */
#como { background: var(--navy); }
.steps-wrap {
  display: flex; flex-direction: column; gap: 0; margin-top: 56px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.step {
  display: flex; gap: 28px; align-items: flex-start;
  position: relative; padding-bottom: 40px;
}
.step:last-child { padding-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg,var(--indigo),var(--indigo-d));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 20px; font-weight: 800; color: white;
  box-shadow: 0 0 20px rgba(123,111,232,.35);
  flex-shrink: 0;
}
.step-line {
  width: 2px; flex: 1; min-height: 40px; margin-top: 8px;
  background: linear-gradient(180deg, var(--indigo), transparent);
}
.step:last-child .step-line { display: none; }
.step-body { padding-top: 12px; }
.step-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-body p  { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── CASOS DE USO ────────────────────────────────────────────── */
#casos { background: var(--navy2); }
.casos-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 20px; margin-top: 48px;
}
.caso-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--card-b);
  transition: all .3s;
}
.caso-card:hover { transform: translateY(-3px); border-color: rgba(123,111,232,.25); }
.caso-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px;
  border-radius: 20px; margin-bottom: 16px;
}
.caso-tag.dental { background: rgba(123,111,232,.15); color: var(--indigo); }
.caso-tag.estetica{ background: var(--cyan-bg); color: var(--cyan); }
.caso-tag.pyme   { background: var(--emerald-bg); color: var(--emerald-l); }
.caso-tag.inmob  { background: rgba(245,158,11,.12); color: #FCD34D; }
.caso-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.caso-card p  { font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 14px; }
.caso-items { display: flex; flex-direction: column; gap: 6px; }
.caso-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text2);
}
.caso-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald-l); flex-shrink: 0;
}

/* ── BENEFICIOS ──────────────────────────────────────────────── */
#beneficios { background: var(--navy); }
.beneficios-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 16px; margin-top: 48px;
}
.ben-card {
  padding: 24px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--card-b);
  text-align: center; transition: all .3s;
}
.ben-card:hover { background: var(--card-hover); border-color: rgba(123,111,232,.25); transform: translateY(-2px); }
.ben-ico {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; background: var(--indigo-bg); border: 1px solid rgba(123,111,232,.2);
}
.ben-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.ben-card p  { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── PLANES ──────────────────────────────────────────────────── */
#planes { background: var(--navy2); }
.planes-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 24px; margin-top: 48px; align-items: start;
}
.plan-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--card-b);
  position: relative; transition: all .3s;
}
.plan-card.featured {
  background: linear-gradient(135deg,rgba(123,111,232,.12),rgba(0,196,255,.06));
  border-color: var(--indigo);
  box-shadow: 0 0 0 1px rgba(123,111,232,.2), 0 20px 60px rgba(123,111,232,.15);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 20px;
  background: linear-gradient(135deg,var(--indigo),var(--indigo-d));
  font-size: 11px; font-weight: 700; color: white; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
}
.plan-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.plan-desc { font-size: 13px; color: var(--text2); margin-bottom: 20px; line-height: 1.6; }
.plan-price {
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  color: var(--emerald-l); margin-bottom: 24px;
  padding: 8px 14px; background: var(--emerald-bg);
  border-radius: var(--radius-xs); display: inline-block;
}
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text2);
}
.plan-feat::before {
  content: '✓'; color: var(--emerald-l); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.btn-plan {
  width: 100%; padding: 12px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all .25s; border: none;
}
.btn-plan-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--card-b);
}
.btn-plan-ghost:hover { background: var(--card); }
.btn-plan-primary {
  background: linear-gradient(135deg,var(--indigo),var(--indigo-d));
  color: white;
  box-shadow: 0 4px 14px rgba(123,111,232,.3);
}
.btn-plan-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123,111,232,.45); }

/* ── NOSOTROS ────────────────────────────────────────────────── */
#nosotros { background: var(--navy); }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.nosotros-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.stat-card {
  padding: 20px; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--card-b);
  text-align: center;
}
.stat-val {
  font-family: var(--font-head); font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg,var(--indigo),var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.stat-lbl { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: .8px; }
.nosotros-visual {
  background: var(--card); border: 1px solid var(--card-b);
  border-radius: var(--radius); padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.nos-items { display: flex; flex-direction: column; gap: 20px; }
.nos-item { display: flex; gap: 14px; align-items: flex-start; }
.nos-ico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; background: var(--indigo-bg);
}
.nos-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.nos-item p  { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── CONTACTO ────────────────────────────────────────────────── */
#contacto { background: var(--navy2); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contacto-info h2 { margin-bottom: 16px; }
.contacto-info p { color: var(--text2); line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--card-b);
}
.contact-ico { font-size: 20px; }
.contact-text { font-size: 14px; font-weight: 500; }
.contact-text span { display: block; font-size: 11px; color: var(--text3); margin-top: 2px; }

/* Form */
.form-card {
  padding: 36px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--card-b);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.form-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.form-card p  { font-size: 13px; color: var(--text2); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: .8px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(123,111,232,.12); }
.form-group select option { background: var(--navy2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; padding: 14px; margin-top: 8px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  background: linear-gradient(135deg,var(--indigo),var(--indigo-d));
  color: white; font-family: var(--font-body); font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 24px rgba(123,111,232,.35);
  transition: all .25s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(123,111,232,.5); }
.form-success {
  display: none; padding: 16px; border-radius: var(--radius-sm); margin-top: 14px;
  background: var(--emerald-bg); border: 1px solid rgba(46,201,143,.3);
  color: var(--emerald-l); font-size: 14px; font-weight: 500; text-align: center;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px clamp(20px,4vw,40px) 28px;
  background: var(--navy);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 32px; height: 32px; }
.footer-brand-name {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 800;
}
.footer-brand-name .ia { color: var(--indigo); }
.footer-tagline { font-size: 14px; color: var(--text2); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--card); border: 1px solid var(--card-b);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all .2s; cursor: pointer;
}
.social-btn:hover { background: var(--indigo-bg); border-color: var(--indigo); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--text3);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: var(--text2); transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text3); }
.footer-domain { font-size: 13px; color: var(--indigo); font-weight: 600; }

/* ── FLOATING WA BUTTON ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all .3s; text-decoration: none;
  border: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy2); border: 1px solid var(--card-b);
  padding: 6px 14px; border-radius: 8px; white-space: nowrap;
  font-size: 13px; font-weight: 500; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

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

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid        { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .nosotros-grid    { grid-template-columns: 1fr; }
  .contacto-grid    { grid-template-columns: 1fr; }
  .footer-top       { grid-template-columns: 1fr 1fr; }
  nav ul            { display: none; }
  .nav-cta-desktop  { display: none; }
  .hamburger        { display: flex; }
}
@media (max-width: 600px) {
  .footer-top       { grid-template-columns: 1fr; }
  .form-grid        { grid-template-columns: 1fr; }
  .planes-grid      { grid-template-columns: 1fr; }
  .beneficios-grid  { grid-template-columns: 1fr 1fr; }
  .hero-btns        { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
