/* ═══════════════════════════════════════════════════════════════
   e-Karú — CSS Global
   Paleta real de marca:
   Rojo:   #E8192C  (acento principal, "Karú")
   Verde:  #7AB929  (secundario, "e-")
   Azul:   #00AEEF  (terciario, ícono)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Marca */
  --red:          #E8192C;
  --red-dark:     #C4121F;
  --red-light:    #FEE8EA;
  --green:        #7AB929;
  --green-dark:   #5E9010;
  --green-light:  #F0F8E6;
  --blue:         #00AEEF;
  --blue-dark:    #0090C8;
  --blue-light:   #E6F7FD;

  /* Neutrales */
  --text:         #0F172A;
  --text-2:       #334155;
  --text-3:       #64748B;
  --border:       #E2E8F0;
  --bg:           #FFFFFF;
  --bg-2:         #F8FAFC;
  --bg-3:         #F1F5F9;

  /* Tipografía */
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-display: 'Instrument Serif', serif;

  /* Espaciado & forma */
  --radius:       14px;
  --radius-sm:    8px;
  --radius-xs:    6px;

  /* Sombras */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --shadow-red:   0 4px 16px rgba(232,25,44,0.25);
  --shadow-green: 0 4px 16px rgba(122,185,41,0.25);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── UTILITIES ──────────────────────────────────────────────── */
.container    { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section      { padding: 72px 0; }
.section-sm   { padding: 48px 0; }
.text-center  { text-align: center; }
.center       { margin: 0 auto; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red-light); color: var(--red);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
  margin-bottom: 16px;
}
.tag-green {
  background: var(--green-light); color: var(--green-dark);
}
.tag-blue {
  background: var(--blue-light); color: var(--blue-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2; color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-3); max-width: 560px;
}
.section-sub.center { margin: 0 auto; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: all 0.2s;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,25,44,0.35);
}
.btn-secondary {
  background: var(--green); color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-secondary:hover {
  background: var(--green-dark); transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red-light); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-white {
  background: #fff; color: var(--red); font-weight: 700;
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--red-light); }
.btn-lg    { padding: 18px 36px; font-size: 17px; border-radius: 12px; }
.btn-sm    { padding: 10px 20px; font-size: 13px; }
.btn-full  { width: 100%; }

/* ── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; max-width: 1120px; margin: 0 auto;
  min-height: 64px;
}
.nav-logo img {
  height: 42px; width: auto;
}
.nav-right {
  display: flex; align-items: center; gap: 12px;
}
.nav-badge {
  background: var(--green-light); color: var(--green-dark);
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 20px; display: none;
}
@media(min-width: 640px) { .nav-badge { display: block; } }
.nav-back {
  font-size: 13px; color: var(--text-3);
  display: flex; align-items: center; gap: 4px;
}
.nav-back:hover { color: var(--red); }

/* ── SUPPORT BANNER ─────────────────────────────────────────── */
.support-banner {
  background: var(--green-light);
  border-bottom: 1px solid #C5E68A;
  padding: 7px 20px; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.support-banner .dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

/* ── HERO (página principal) ────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1a0a0b 0%, #8B0F1A 40%, #E8192C 100%);
  padding: 72px 0 88px; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,174,239,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(122,185,41,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px;
  margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 66px);
  color: #fff; line-height: 1.08; margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero h1 .accent-green { color: #A8D85A; }
.hero h1 .accent-blue  { color: #7DD3FC; }
.hero-sub {
  font-size: clamp(16px, 3vw, 20px);
  color: rgba(255,255,255,0.82); max-width: 580px;
  margin: 0 auto 40px;
}
.hero-btns {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
@media(min-width: 480px) { .hero-btns { flex-direction: row; justify-content: center; } }

.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px 48px; margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px); color: #fff; line-height: 1;
}
.hero-stat-num .sup { font-size: 0.55em; color: rgba(255,255,255,0.6); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 5px; }

/* ── HERO VERTICAL (subpáginas) ─────────────────────────────── */
.hero-v {
  background: linear-gradient(135deg, #1a0a0b 0%, #8B0F1A 50%, #E8192C 100%);
  padding: 56px 0 72px; position: relative; overflow: hidden;
}
.hero-v::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 30%, rgba(122,185,41,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero-v-content { position: relative; z-index: 1; }
.hero-v-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px;
  margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2);
}
.hero-v h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 54px);
  color: #fff; line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-v h1 em { color: #A8D85A; font-style: normal; }
.hero-v-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 32px;
}
.hero-v-btns { display: flex; flex-direction: column; gap: 12px; }
@media(min-width: 480px) { .hero-v-btns { flex-direction: row; } }
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 6px; margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: #fff; }

/* ── PROBLEM CARDS ──────────────────────────────────────────── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.problem-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  border-left: 4px solid #FCA5A5;
  transition: box-shadow 0.2s;
}
.problem-card:hover { box-shadow: var(--shadow); }
.problem-icon { font-size: 28px; margin-bottom: 12px; }
.problem-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.problem-desc  { font-size: 13px; color: var(--text-3); line-height: 1.55; }

/* ── BENEFIT CARDS ──────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 40px;
}
.benefit-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.benefit-emoji { font-size: 30px; margin-bottom: 14px; }
.benefit-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-desc  { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* ── VERTICAL CARDS ─────────────────────────────────────────── */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
}
@media(min-width: 640px) {
  .verticals-grid { grid-template-columns: repeat(auto-fill, minmax(172px, 1fr)); }
}
.vertical-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 24px 14px;
  text-align: center; cursor: pointer; display: block;
  color: var(--text); transition: all 0.2s;
}
.vertical-card:hover {
  border-color: var(--red); background: var(--red-light);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.vertical-emoji { font-size: 34px; margin-bottom: 10px; }
.vertical-name  { font-size: 13px; font-weight: 700; }
.vertical-sub   { font-size: 11px; color: var(--text-3); margin-top: 4px; }

/* ── MODULE CARDS ───────────────────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 40px;
}
.module-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.2s;
}
.module-card:hover { box-shadow: var(--shadow); }
.module-head { display: flex; align-items: center; gap: 12px; }
.module-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--red-light); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.module-name { font-size: 15px; font-weight: 700; }
.module-desc { font-size: 13px; color: var(--text-3); line-height: 1.6; }
.module-features { display: flex; flex-direction: column; gap: 6px; }
.module-feat {
  font-size: 12px; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 7px;
}
.module-feat::before {
  content: '✓'; color: var(--green); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

/* ── HIGHLIGHT CARDS (subpáginas) ───────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 40px;
}
.highlight-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  border-top: 4px solid var(--red);
  transition: box-shadow 0.2s, transform 0.2s;
}
.highlight-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.hl-head   { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.hl-icon   {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red-light); display: flex; align-items: center;
  justify-content: center; font-size: 24px; flex-shrink: 0;
}
.hl-name   { font-size: 16px; font-weight: 700; }
.hl-desc   { font-size: 13px; color: var(--text-3); line-height: 1.6; margin-bottom: 16px; }
.hl-features { display: flex; flex-direction: column; gap: 7px; }
.hl-feat {
  font-size: 12px; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 8px;
}
.hl-feat::before { content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── DIFFERENTIATOR CARDS ───────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.diff-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  border-top: 4px solid var(--green);
}
.diff-icon  { font-size: 30px; margin-bottom: 12px; }
.diff-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.diff-desc  { font-size: 13px; color: var(--text-3); line-height: 1.6; }
.diff-badge {
  display: inline-block; background: var(--green-light); color: var(--green-dark);
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; margin-top: 12px;
}

/* ── PAIN/SOLVE TABLE ───────────────────────────────────────── */
.pain-solve-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; border-radius: var(--radius); overflow: hidden; margin-top: 40px;
}
@media(max-width: 600px) { .pain-solve-grid { grid-template-columns: 1fr; } }
.pain-col  { background: #FEF2F2; padding: 32px 24px; }
.solve-col { background: var(--green-light); padding: 32px 24px; }
.col-header {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 20px;
}
.pain-col .col-header  { color: #DC2626; }
.solve-col .col-header { color: var(--green-dark); }
.pain-item, .solve-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: 13px; line-height: 1.55; color: var(--text-2);
}
.pain-item::before  { content: '✖'; color: #DC2626; font-weight: 700; flex-shrink: 0; }
.solve-item::before { content: '✔'; color: var(--green-dark); font-weight: 700; flex-shrink: 0; }

/* ── ALL MODULES LIST ───────────────────────────────────────── */
.modules-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px; margin-top: 32px;
}
.module-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 13px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
}
.module-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── SOCIAL PROOF ───────────────────────────────────────────── */
.proof-section {
  background: linear-gradient(135deg, #1a0a0b, #8B0F1A, #E8192C);
}
.proof-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: rgba(255,255,255,0.08);
  border-radius: var(--radius); overflow: hidden; margin-top: 40px;
}
@media(min-width: 640px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }
.proof-stat {
  background: rgba(255,255,255,0.06);
  padding: 32px 20px; text-align: center;
}
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 50px); color: #fff; line-height: 1;
}
.proof-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 8px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 28px 24px;
}
.stars         { color: #FBBF24; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px; color: rgba(255,255,255,0.88);
  line-height: 1.7; margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.15); display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: #fff; }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px; margin-top: 48px;
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: var(--shadow-red);
}
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-desc  { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* ── TRUST BADGES ───────────────────────────────────────────── */
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-top: 36px;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 30px; padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: var(--text-2);
  box-shadow: var(--shadow-sm);
}
.trust-badge .badge-icon { font-size: 15px; }

/* ── SOLUTION INTRO BOX ─────────────────────────────────────── */
.solution-box {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 20px; padding: 48px 36px; text-align: center;
  margin-bottom: 48px;
}
.solution-box h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px); color: #fff; margin-bottom: 14px;
}
.solution-box p { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1a0a0b, #8B0F1A, #E8192C);
  border-radius: 24px; padding: 64px 36px;
  text-align: center; margin: 0 20px;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 44px); color: #fff; margin-bottom: 14px;
}
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; }
@media(min-width: 480px) { .cta-btns { flex-direction: row; justify-content: center; } }
.cta-trust { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-2); }
.faq-list    { max-width: 760px; margin: 40px auto 0; }
.faq-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: none; border: none;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  color: var(--text); cursor: pointer; text-align: left; gap: 16px;
}
.faq-q:hover { background: var(--bg-2); }
.faq-icon    { font-size: 18px; color: var(--red); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  font-size: 13px; color: var(--text-3); line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 250px; padding: 0 22px 18px; }

/* ── STATS ROW (subpáginas) ─────────────────────────────────── */
.stats-row {
  display: flex; flex-wrap: wrap; gap: 20px 48px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-num   { font-family: var(--font-display); font-size: 30px; color: var(--red); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: #0F172A; color: rgba(255,255,255,0.65); padding: 56px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media(min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 38px; width: auto; opacity: 0.9; }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contact  { font-size: 13px; display: flex; align-items: center; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: #fff; }
.footer-col h4   { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.footer-links    { display: flex; flex-direction: column; gap: 8px; }
.footer-links a  { color: rgba(255,255,255,0.55); font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px;
  display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center;
}
@media(min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 12px; }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 84px; right: 20px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; border: none; font-size: 26px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); text-decoration: none;
  animation: floatWA 3s ease-in-out infinite;
}
@media(min-width: 768px) { .whatsapp-float { bottom: 24px; } }
@keyframes floatWA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.whatsapp-float:hover { background: #20ba5c; }

/* ── STICKY CTA MOBILE ──────────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 10px 16px; display: flex; gap: 10px;
}
@media(min-width: 768px) { .sticky-cta { display: none; } }

/* ── VIDEO SECTION ──────────────────────────────────────────── */
.video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin: 48px 0;
  border-top: 4px solid var(--red);
}
@media(max-width: 768px) {
  .video-section {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 28px;
  }
}
.video-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text); line-height: 1.2;
  margin-bottom: 12px; margin-top: 8px;
}
.video-desc {
  font-size: 14px; color: var(--text-3);
  line-height: 1.7; margin-bottom: 20px;
}
.video-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.video-features li {
  font-size: 13px; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 8px;
}
.video-features li::before {
  content: '✓'; color: var(--green);
  font-weight: 700; flex-shrink: 0;
}
.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0; overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius-sm);
}


.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── DIVIDERS ───────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }
.section-bg-2 { background: var(--bg-2); }
.section-bg-3 { background: var(--bg-3); }

/* ── WHATSAPP FLOAT MENU (dos números) ──────────────────── */
.wa-float-wrap {
  position: fixed; bottom: 24px; right: 20px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
@media(max-width: 767px) {
  .wa-float-wrap { bottom: 84px; }
}
.whatsapp-float {
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; border: none;
  font-size: 26px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: floatWA 3s ease-in-out infinite;
  flex-shrink: 0;
}
.whatsapp-float:hover { background: #20ba5c; }
@keyframes floatWA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.wa-float-menu {
  display: none; flex-direction: column; gap: 8px; align-items: flex-end;
}
.wa-float-menu.open { display: flex; }
.wa-float-option {
  display: flex; flex-direction: column; align-items: flex-end;
  background: #fff; border-radius: 10px;
  padding: 10px 16px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-left: 4px solid #25D366;
  transition: transform 0.15s, box-shadow 0.15s;
  min-width: 180px;
}
.wa-float-option:hover { transform: translateX(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.wa-float-num   { font-size: 14px; font-weight: 700; color: var(--text); }
.wa-float-label { font-size: 11px; color: var(--text-3); margin-top: 2px; }
