/* ═══════════════════════════════════════════
   JC WEB STUDIO & DESARROLLO PUBLICITARIO
   Tema oscuro + partículas — style.css
   ═══════════════════════════════════════════ */

:root {
  --bg:         #070b14;
  --bg2:        #0a0f1c;
  --surface:    rgba(255,255,255,.035);
  --surface2:   rgba(255,255,255,.06);
  --border:     rgba(255,255,255,.09);
  --border2:    rgba(255,255,255,.16);

  --ink:        #f3f6fb;
  --ink-soft:   #aab6c8;
  --muted:      #6e7c90;

  --cyan:       #2fd0ff;
  --cyan-d:     #00b4e6;
  --cyan-l:     #8be9ff;
  --cyan-bg:    rgba(47,208,255,.1);
  --cyan-bdr:   rgba(47,208,255,.32);

  --orange:     #ff8c1a;
  --orange-d:   #ff7b00;
  --orange-l:   #ffb259;
  --orange-bg:  rgba(255,140,26,.1);
  --orange-bdr: rgba(255,140,26,.32);

  --green:      #2ee08a;
  --red:        #ff5d6c;

  --grad-brand: linear-gradient(135deg, var(--cyan) 0%, var(--orange) 100%);
  --grad-cyan:  linear-gradient(135deg, var(--cyan-l), var(--cyan-d));
  --grad-orange:linear-gradient(135deg, var(--orange-l), var(--orange-d));

  --radius:     20px;
  --radius-sm:  12px;
  --nav-h:      72px;

  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --shadow-sm: 0 2px 14px rgba(0,0,0,.25);
  --shadow-md: 0 16px 40px rgba(0,0,0,.4);
  --shadow-lg: 0 28px 70px rgba(0,0,0,.5);
  --shadow-cyan: 0 14px 38px rgba(47,208,255,.22);
  --shadow-orange: 0 14px 38px rgba(255,140,26,.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
section { padding: 96px 0; position: relative; z-index: 2; }
section + section { border-top: 1px solid var(--border); }

/* ═══════════════ FONDO DE PARTÍCULAS (notorio, todo el sitio) ═══════════════ */
#particles-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 12% 0%, rgba(47,208,255,.16), transparent 60%),
    radial-gradient(800px 560px at 90% 100%, rgba(255,140,26,.14), transparent 60%),
    radial-gradient(600px 500px at 60% 40%, rgba(47,208,255,.06), transparent 70%),
    var(--bg);
}
#particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* velo muy sutil — solo para dar profundidad, ya no tapa las partículas */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,11,20,.05), rgba(7,11,20,.12) 50%, rgba(7,11,20,.3));
  pointer-events: none;
}

/* ═══════════════ TEXT HELPERS ═══════════════ */
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cyan-text   { color: var(--cyan); }
.orange-text { color: var(--orange); }

/* ═══════════════ GLASS CARD BASE ═══════════════ */
.glass, .feat-card, .plan-card, .testi-card, .seo-item, .compare-box,
.contact-card, .mock-card, .seo-score-card, .faq-item {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ═══════════════ NAV ═══════════════ */
nav {
  position: fixed; top:0; left:0; right:0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(7,11,20,.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); background: rgba(7,11,20,.85); }
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--font-head);
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.nav-logo .mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: #07101e; font-size: 16px; font-weight: 900;
  flex-shrink: 0;
}
.nav-logo .brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav-logo .brand-text b,
.nav-logo .brand-text small {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: -.2px;
  color: var(--ink);
  font-style: normal;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  padding: 8px 14px; border-radius: 100px;
  transition: color .2s, background .2s;
  display: flex; align-items: center; gap: 6px;
}
.nav-links a:hover { color: var(--cyan-l); background: var(--cyan-bg); }
.nav-cta {
  background: var(--grad-brand) !important;
  color: #07101e !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  box-shadow: var(--shadow-cyan);
}
.nav-cta:hover { color: #07101e !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left:0; right:0;
  background: rgba(7,11,20,.97); border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 999; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-md); backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 600; color: var(--ink-soft); padding: 12px 16px; border-radius: var(--radius-sm); display:flex; align-items:center; gap:8px; }
.mobile-menu a:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.mobile-menu .mob-cta { margin-top: 10px; background: var(--grad-brand); color: #07101e; text-align: center; padding: 14px; border-radius: 100px; font-weight: 700; justify-content: center; }

@media (max-width: 380px) {
  .nav-logo .brand-text b, .nav-logo .brand-text small { font-size: 12px; }
  .nav-logo .mark { width: 32px; height: 32px; font-size: 14px; }
}
@media (max-width: 820px) { .nav-links { display: none; } .hamburger { display: flex; } }

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px;
  padding: 15px 30px; border-radius: 100px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary { background: var(--grad-brand); color: #07101e; box-shadow: var(--shadow-cyan); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(47,208,255,.32); }
.btn-outline { background: rgba(255,255,255,.04); border: 1.5px solid var(--border2); color: var(--ink); }
.btn-outline:hover { border-color: var(--cyan-bdr); color: var(--cyan-l); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 14px 34px rgba(37,211,102,.28); }
.btn-wa:hover { transform: translateY(-2px); background: #1eb858; }

/* ═══════════════ HERO ═══════════════ */
#inicio {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 56px);
  border: none; overflow: visible;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-bg); border: 1px solid var(--orange-bdr); color: var(--orange-l);
  font-size: 12px; font-weight: 700; letter-spacing: .4px;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(36px, 5.2vw, 58px);
  letter-spacing: -1.6px; line-height: 1.05; margin-bottom: 20px;
  color: var(--ink);
}
.hero-desc { font-size: 17px; color: var(--ink-soft); line-height: 1.75; max-width: 510px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-trust span { font-size: 13px; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.hero-trust .dot { color: var(--green); }

/* HERO MOCKUP */
.hero-visual { position: relative; }
.mock-card { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.mock-bar { background: rgba(255,255,255,.04); padding: 12px 18px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.md-r { background: #ff5f57; } .md-y { background: #febc2e; } .md-g { background: #28c840; }
.mock-url { flex: 1; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 7px; padding: 5px 12px; font-size: 11.5px; color: var(--muted); text-align: center; font-family: var(--font-mono); }
.mock-body { padding: 30px 26px; }
.mock-rank {
  display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 14px;
}
.mock-rank .num { width: 30px; height: 30px; border-radius: 8px; background: var(--grad-brand); color: #07101e; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.mock-rank .info b { display: block; font-size: 13px; color: var(--ink); }
.mock-rank .info span { font-size: 11px; color: var(--green); font-weight: 600; }
.mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.mock-stat { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; text-align: center; }
.mock-stat b { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 800; }
.mock-stat span { font-size: 11px; color: var(--muted); }
.float-chip {
  position: absolute; background: rgba(10,15,28,.95); border: 1px solid var(--border); border-radius: 100px;
  padding: 8px 16px; box-shadow: var(--shadow-md); font-size: 12.5px; font-weight: 700;
  display: flex; align-items: center; gap: 6px; backdrop-filter: blur(10px);
  z-index: 5;
}
.chip-1 { top: -10px; right: 12px; color: var(--green); }
.chip-2 { bottom: -16px; left: 0px; color: var(--cyan-l); }

/* ═══════════════ SECTION HEADER ═══════════════ */
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.sec-badge {
  display: inline-block; background: var(--cyan-bg); border: 1px solid var(--cyan-bdr); color: var(--cyan-l);
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 18px;
}
.sec-h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 44px); letter-spacing: -1.2px; line-height: 1.12; margin-bottom: 14px; color: var(--ink); }
.sec-p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.7; }

/* ═══════════════ FEATURES GRID ═══════════════ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  border-radius: var(--radius);
  padding: 28px 24px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--cyan-bdr); }
.feat-icon {
  width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px; color: #07101e;
}
.fi-cyan { background: var(--grad-cyan); }
.fi-orange { background: var(--grad-orange); }
.feat-card h3 { font-family: var(--font-head); font-size: 16.5px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.feat-card p { font-size: 13.8px; color: var(--ink-soft); line-height: 1.6; }

/* ═══════════════ SEO DEEP-DIVE SECTION ═══════════════ */
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .seo-grid { grid-template-columns: 1fr; gap: 36px; } }
.seo-list { display: flex; flex-direction: column; gap: 14px; }
.seo-item {
  display: flex; gap: 14px;
  border-radius: var(--radius-sm); padding: 16px 18px;
  transition: border-color .25s, transform .25s;
}
.seo-item:hover { border-color: var(--orange-bdr); transform: translateX(3px); }
.seo-ico {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px; color: #07101e;
  background: var(--grad-orange);
}
.seo-item h4 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.seo-item p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

.seo-score-card {
  border-radius: var(--radius); padding: 36px 32px;
  position: sticky; top: 100px;
  background: linear-gradient(160deg, rgba(47,208,255,.08), rgba(255,140,26,.05));
}
.seo-score-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.seo-score-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.score-ring { position: relative; width: 90px; height: 90px; }
.score-ring svg { transform: rotate(-90deg); }
.score-ring .bg-ring { stroke: rgba(255,255,255,.1); }
.score-ring .fg-ring { stroke: url(#scoregrad); stroke-linecap: round; }
.score-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--ink); }
.seo-score-rows { display: flex; flex-direction: column; gap: 14px; }
.seo-score-row { display: flex; align-items: center; justify-content: space-between; }
.seo-score-row .label { font-size: 13.5px; color: var(--ink-soft); }
.seo-score-row .val { font-size: 13px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.val-good { background: rgba(46,224,138,.14); color: var(--green); }
.val-best { background: rgba(47,208,255,.14); color: var(--cyan-l); }

/* ═══════════════ PLANES ═══════════════ */
.plan-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.plan-card {
  border-radius: 22px;
  padding: 30px; position: relative; transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan-card.featured { border-color: var(--orange); box-shadow: var(--shadow-orange); }
.plan-best {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-orange); color: #07101e; font-size: 11px; font-weight: 800;
  letter-spacing: .6px; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.plan-tier { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.plan-name { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; letter-spacing: -.4px; }
.plan-desc { font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; min-height: 36px; line-height: 1.5; }
.plan-price-box { display: flex; align-items: flex-end; gap: 4px; }
.plan-curr { font-size: 20px; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.plan-amount { font-family: var(--font-head); font-size: 52px; font-weight: 800; letter-spacing: -2px; line-height: 1; color: var(--cyan-l); }
.plan-period { font-size: 13px; color: var(--muted); margin: 6px 0 18px; }
.plan-note { font-size: 11.5px; color: var(--ink-soft); margin-bottom: 22px; padding: 8px 12px; border-radius: 8px; background: rgba(255,255,255,.04); border: 1px solid var(--border); }
.plan-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.pf-check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 1px; color: #07101e; }
.pf-cyan { background: var(--cyan); }
.pf-orange { background: var(--orange); }
.plan-btn { display: block; width: 100%; text-align: center; padding: 14px; border-radius: 100px; font-weight: 700; font-size: 14.5px; transition: all .2s; }
.plan-btn-default { background: rgba(255,255,255,.05); border: 1px solid var(--border2); color: var(--ink); }
.plan-btn-default:hover { border-color: var(--cyan-bdr); color: var(--cyan-l); }
.plan-btn-featured { background: var(--grad-orange); color: #07101e; box-shadow: var(--shadow-orange); }
.plan-btn-featured:hover { transform: translateY(-1px); }

/* ═══════════════ COMPARATIVA ═══════════════ */
.compare-box { max-width: 760px; margin: 0 auto; border-radius: 26px; padding: 44px; box-shadow: var(--shadow-md); }
@media (max-width: 560px) { .compare-box { padding: 26px 20px; } }
.compare-h2 { text-align: center; font-family: var(--font-head); font-size: clamp(24px, 3.8vw, 38px); font-weight: 800; letter-spacing: -1px; margin-bottom: 10px; color: var(--ink); }
.compare-p { text-align: center; color: var(--ink-soft); margin-bottom: 32px; font-size: 15.5px; }
.compare-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.compare-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; border-radius: 10px; background: rgba(255,255,255,.03); border: 1px solid var(--border); }
.compare-row span { font-size: 14.5px; color: var(--ink-soft); }
.compare-row strong { font-size: 14.5px; color: var(--red); font-weight: 700; }
.compare-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border-radius: 10px; background: rgba(255,93,108,.08); border: 1px solid rgba(255,93,108,.28); margin-bottom: 8px; }
.compare-total span { font-size: 15px; font-weight: 700; color: var(--ink); }
.compare-total strong { font-size: 19px; font-weight: 800; color: var(--red); }
.compare-vs { display: flex; justify-content: space-between; align-items: center; padding: 18px 18px; border-radius: 12px; background: rgba(46,224,138,.1); border: 1px solid rgba(46,224,138,.32); margin-top: 16px; }
.compare-vs span { font-size: 15px; font-weight: 700; color: var(--ink); }
.compare-vs strong { font-size: 21px; font-weight: 800; color: var(--green); }
.compare-save { text-align: center; margin-top: 14px; font-size: 14.5px; color: var(--green); font-weight: 700; }

/* ═══════════════ TESTIMONIOS ═══════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { border-radius: var(--radius); padding: 26px; transition: transform .25s, box-shadow .25s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--orange); font-size: 14px; margin-bottom: 12px; letter-spacing: 1px; }
.testi-text { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #07101e; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testi-biz { font-size: 12px; color: var(--muted); }

/* ═══════════════ CTA FINAL ═══════════════ */
#cta-final { text-align: center; overflow: hidden; position: relative; }
.cta-h2 { position: relative; font-family: var(--font-head); font-size: clamp(28px, 5vw, 50px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.12; margin-bottom: 16px; color: var(--ink); }
.cta-p { position: relative; font-size: 17px; color: var(--ink-soft); margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-trust { position: relative; display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 24px; }
.cta-trust span { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }

/* ═══════════════ FAQ ═══════════════ */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border-radius: 14px; overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: var(--cyan-bdr); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; font-size: 15px; font-weight: 700; text-align: left; gap: 16px; color: var(--ink); }
.faq-q svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--cyan-l); }
.faq-a { display: none; padding: 0 22px 20px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ═══════════════ CONTACTO ═══════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-q { font-family: var(--font-head); font-size: clamp(24px, 3.6vw, 36px); font-weight: 800; letter-spacing: -1px; line-height: 1.3; margin-bottom: 16px; color: var(--ink); }
.contact-p { font-size: 15px; color: var(--ink-soft); margin-bottom: 28px; line-height: 1.7; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card { border-radius: var(--radius-sm); padding: 18px 22px; display: flex; align-items: center; gap: 14px; transition: border-color .25s; }
.contact-card:hover { border-color: var(--cyan-bdr); }
.cc-icon { font-size: 22px; flex-shrink: 0; color: var(--cyan-l); }
.cc-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.cc-val { font-size: 14.5px; font-weight: 600; color: var(--ink); }

/* ═══════════════ FOOTER ═══════════════ */
footer { background: rgba(5,8,15,.6); color: var(--ink-soft); padding: 40px 0; border-top: 1px solid var(--border); position: relative; z-index: 2; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--ink); }
.footer-logo .mark { width: 30px; height: 30px; border-radius: 8px; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: #07101e; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; align-items: center; }
.footer-links a { font-size: 13px; color: var(--ink-soft); transition: color .2s; }
.footer-links a:hover { color: var(--cyan-l); }

/* ═══════════════ WHATSAPP ICON ═══════════════ */
.wa-icon { width: 18px; height: 18px; flex-shrink: 0; vertical-align: -3px; fill: currentColor; }
.wa-float .wa-icon { width: 28px; height: 28px; fill: #fff; }
.btn-wa .wa-icon { fill: #fff; width: 20px; height: 20px; }

/* ═══════════════ VIDEO SECTION ═══════════════ */
#video-intro { padding: 0 0 96px; border-top: none; }
.video-wrap {
  max-width: 920px; margin: 0 auto; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: #000;
}
.video-wrap video { width: 100%; display: block; max-height: 520px; background: #000; }

/* ═══════════════ FLOATING WA ═══════════════ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; width: 56px; height: 56px;
  background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 25px; box-shadow: 0 8px 28px rgba(37,211,102,.45); z-index: 900; transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }

/* ═══════════════ REVEAL ═══════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1{transition-delay:.05s}.d2{transition-delay:.1s}.d3{transition-delay:.15s}.d4{transition-delay:.2s}.d5{transition-delay:.25s}.d6{transition-delay:.3s}

/* Nota: el efecto de partículas se mantiene visible incluso con
   "reducir movimiento" activado en el sistema — solo se anima más
   lento (ver js/main.js), para que el fondo nunca se vea apagado. */

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .compare-box { padding: 26px 18px; }
}
