/* =========================================
   MI JORNADA LABORAL — styles.css
   ========================================= */

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-VariableFont_wght.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}

:root {
  --color-primary: #334155;
  --color-primary-rgb: 51, 65, 85;
  --color-primary-light: #64748B;

  --color-secondary: #059669;
  --color-secondary-light: #10B981;

  --color-accent: #F59E0B;
  --color-accent-dark: #D97706;

  --bg-base: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-2: #F1F5F9;
  --bg-border: #E2E8F0;

  --text-primary: #0F172A;
  --text-muted: #64748B;

  --radius: 12px;
  --radius-lg: 20px;

  --shadow: 0 12px 40px rgba(0,0,0,.08);
  --shadow-soft: 0 4px 16px rgba(0,0,0,.05);

  --max-width: 1100px;
  --transition: all 0.25s ease;
}

/* =========================================
   BASE
   ========================================= */

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

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  margin-top: 0;
}

p { margin-top: 0; }

.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 24px;
}

/* =========================================
   HEADER
   ========================================= */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--bg-border);
  backdrop-filter: blur(8px);
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;

  svg { 
    height: 50px;

    .logo-hand-big {
      transform-box: fill-box;
      transform-origin: 50% 100%;
    }

    .logo-hand-small {
      transform-box: fill-box;
      transform-origin: 0% 0%;
    }
  }

  .site-title {
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    transition: all .4s ease-in-out;
  }

  &:hover {

    .site-title {
      color: var(--color-secondary-light);
    }

    svg .logo-hand-small {
      transform: rotate(720deg);
      transition: transform 1s ease-in-out;
    }
  }
}



.header-contact { margin-left: auto; text-align: right; }

.header-contact a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
}

.header-contact a:hover { color: var(--color-primary-light); }

/* =========================================
   BOTONES
   ========================================= */

.btn-primary,
.cta-shared {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.btn-primary:hover,
.cta-shared:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,.35);
}

.btn-primary.btn-large {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  opacity: .85;
}

.btn-ghost:hover { opacity: 1; text-decoration: underline; }

/* =========================================
   STICKY CTA
   ========================================= */

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: none;
  z-index: 100;
  box-shadow: 0 8px 30px rgba(245,158,11,.4);
}

.sticky-cta.visible { display: inline-block; }

/* =========================================
   SECCIONES BASE
   ========================================= */

.section { padding: 90px 0; }
.section.alternate { background: var(--bg-surface-2); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-tag {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* =========================================
   SCROLL ANIMATE
   ========================================= */

.scroll-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-animate.scrolled {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   HERO — INDEX
   ========================================= */

.hero {
  background: linear-gradient(135deg, #0F172A 0%, #334155 50%, #64748B 100%);
  color: white;
  padding: 100px 24px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,158,11,.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 10px;
  opacity: .9;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* BIFURCACIÓN DE AUDIENCIA */

.hero-audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 48px auto 0;
  text-align: left;
}

.audience-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.audience-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.audience-card.primary-audience {
  border-color: rgba(245,158,11,.5);
  background: rgba(245,158,11,.08);
}

.audience-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .7;
  margin-bottom: 10px;
}

.audience-card p {
  font-size: .98rem;
  opacity: .88;
  margin-bottom: 20px;
  line-height: 1.6;
}

.audience-price {
  font-size: .88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  margin-top: -12px;
}

.audience-price strong {
  color: #F59E0B;
  font-weight: 800;
  font-size: 1rem;
}

/* =========================================
   HERO — ASESORÍAS LANDING
   ========================================= */

.hero-asesorias {
  background: linear-gradient(135deg, #047857 0%, #059669 50%, #10B981 100%);
}

.hero-asesorias::before {
  background: radial-gradient(ellipse at 70% 50%, rgba(245,158,11,.14) 0%, transparent 60%);
}

.hero-badge-green {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-trust {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .88rem;
  opacity: .8;
}

/* =========================================
   NORMATIVA
   ========================================= */

.normativa {
  background: white;
}

.normativa.alternate {
  background: var(--bg-surface-2);
}

.normativa-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.normativa-tag {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.normativa-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.normativa-text p { color: var(--text-muted); margin-bottom: 14px; }
.normativa-text p strong { color: var(--text-primary); }

.normativa-highlight {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.normativa-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 28px;
  background: var(--bg-surface-2);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: .88rem;
  color: var(--text-muted);
}

/* =========================================
   ASESORÍAS — GRID DE CARDS
   ========================================= */

.asesorias {
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
}

.asesorias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.asesoria-card {
  background: white;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
}

.asesoria-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.asesoria-card.highlight {
  border-color: var(--color-accent);
  background: #fffbeb;
}

.asesoria-card h3 { margin-bottom: 8px; font-weight: 700; }
.asesoria-card p { color: var(--text-muted); font-size: .95rem; }

.asesoria-cta {
  text-align: center;
  margin-top: 48px;
}

.cta-note {
  margin-top: 12px;
  font-size: .85rem;
  color: var(--text-muted);
}

/* =========================================
   PRODUCT — SCREENSHOTS
   ========================================= */

.producto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.producto-item {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-soft);
  transition: all .35s ease;
}

.producto-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.producto-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.producto-content { padding: 22px; }
.producto-content h3 { margin-bottom: 6px; font-weight: 700; }
.producto-content p { color: var(--text-muted); font-size: .95rem; }

/* =========================================
   BENEFITS
   ========================================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =========================================
   CARDS (genérico)
   ========================================= */

.card {
  background: var(--bg-surface);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.card h3 { font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: .95rem; }

.card-icon {
  font-size: 24px;
  margin-bottom: 14px;
}

/* =========================================
   MÓDULOS
   ========================================= */

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.modules-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 28px;
}

.module-card {
  background: var(--bg-surface);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.module-card h3 { font-weight: 800; font-size: 1.2rem; margin-bottom: 8px; }
.module-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: 0; }

.module-icon { font-size: 28px; margin-bottom: 14px; }

.module-addon {
  border-style: dashed;
  border-color: var(--bg-border);
  background: var(--bg-base);
}

.module-standalone {
  border-color: var(--bg-border);
  background: var(--bg-base);
}

.addon-tag {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.addon-tag-blue {
  background: var(--color-primary-light);
}

.best-option {
  border: 2px solid var(--color-accent);
  transform: scale(1.05);
}

.best-option:hover { transform: scale(1.05) translateY(-4px); }

.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.price {
  font-weight: 800;
  margin-top: 14px;
  font-size: 1.5rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.price span {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-volumen {
  max-width: 460px;
  margin: 0 auto;
}

/* =========================================
   PRECIOS
   ========================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pricing-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-soft);
}

.pricing-card h3 { font-weight: 700; margin-bottom: 16px; }

.pricing-card.highlight {
  border: 2px solid var(--color-primary);
}

.pricing-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-border);
  color: var(--text-muted);
  font-size: .95rem;
}

.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li strong { color: var(--text-primary); }

.combo-price {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  margin-left: 6px;
}

.pricing-note {
  margin-top: 16px;
  font-size: .88rem;
  color: var(--text-muted);
  border-top: 1px solid var(--bg-border);
  padding-top: 14px;
}

.pricing-note a {
  color: var(--color-primary);
  font-weight: 600;
}

/* =========================================
   PASOS
   ========================================= */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background: var(--bg-surface);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.4s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.step .num {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 14px;
}

.step h4 { font-weight: 700; margin-bottom: 6px; }
.step p { color: var(--text-muted); font-size: .9rem; }

/* =========================================
   GARANTÍAS
   ========================================= */

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.guarantee-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all .3s ease;
}

.guarantee-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow);
}

.guarantee-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.guarantee-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.guarantee-card p { color: var(--text-muted); font-size: .9rem; }

/* =========================================
   FAQ
   ========================================= */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
  cursor: pointer;
  transition: all .25s ease;
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-item h4 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: .98rem;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.faq-item h4::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq-item.open h4::after {
  transform: rotate(45deg);
}

.faq-item p {
  display: none;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.6;
}

.faq-item.open p { display: block; }

/* =========================================
   CONTACTO
   ========================================= */

.contact { text-align: center; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 13px 16px;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  width: 100%;
  font-size: .98rem;
  font-family: inherit;
  background: white;
  color: var(--text-primary);
  transition: border-color .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(76,82,163,.1);
}

.contact-form select { cursor: pointer; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
  cursor: pointer;

  input {
    width: fit-content;
  }
}

.checkbox-label a {
  color: var(--color-primary);
  font-weight: 600;
}

.contact-form button {
  padding: 15px 28px;
  background: var(--color-accent);
  color: white;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form button:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

/* =========================================
   PROPUESTA (landing asesorías)
   ========================================= */

.propuesta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.propuesta-card {
  background: white;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
}

.propuesta-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow);
}

.propuesta-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-border);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.propuesta-card h3 { font-weight: 700; margin-bottom: 8px; }
.propuesta-card p { color: var(--text-muted); font-size: .93rem; }

/* =========================================
   FEATURES LIST (landing asesorías)
   ========================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-secondary);
}

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 { font-weight: 700; margin-bottom: 6px; font-size: .98rem; }
.feature-item p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* =========================================
   PRECIOS RESELLER (landing asesorías)
   ========================================= */

.precios-asesoria {
  background: white;
}

.reseller-highlight {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 28px;
}

.reseller-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.reseller-highlight h3 { font-weight: 800; margin-bottom: 20px; }

.reseller-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reseller-list li {
  font-size: .95rem;
  color: var(--text-muted);
}

.reseller-list li::before { display: none; }

.reseller-cta-col {
  text-align: center;
}

.reseller-cta-col p:first-child {
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 18px;
}

.referencia-precios {
  background: var(--bg-surface-2);
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
  font-size: .92rem;
  color: var(--text-muted);
}

.referencia-precios a {
  color: var(--color-primary);
  font-weight: 600;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  padding: 60px 0;
  background: var(--color-primary);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

.footer strong {
  color: white;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 6px;
}

.footer p { color: var(--text-inverse); font-size: .9rem; }

.footer a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .2s ease;
}

.footer a:hover { color: var(--text-inverse); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* =========================================
   COOKIE BANNER
   ========================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: fit-content;
  background: rgba(20, 25, 47, 0.9);
  color: white;
  padding: 18px 24px;
  display: none;
  z-index: 9999;
  max-width: min(500px, 100%);
  border-radius: 0 10px 0 0;
  box-shadow: 1px -1px 4px var(--color-accent-dark);
}

.cookie-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;

  .cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
}

.cookie-inner a { 
  color: var(--color-accent);
  
}

.cookie-banner button {
  background: var(--color-accent);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;

  &:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
  }
}

/* =========================================
   ASESORÍAS LANDING BODY CLASS
   ========================================= */

.asesorias-landing .site-title { color: var(--color-secondary); }
.asesorias-landing .section-tag { background: var(--color-secondary); }
.asesorias-landing .guarantee-card:hover { border-color: var(--color-secondary); }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .asesorias-grid,
  .negocio-grid,
  .propuesta-grid,
  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .normativa-inner,
  .reseller-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-audience-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .hero {
    padding: 80px 16px 90px;
  }

  .hero h1 { font-size: 2rem; }

  .hero-audience-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modules-grid,
  .modules-grid-4,
  .pricing-grid,
  .steps-grid,
  .benefits-grid,
  .features-grid,
  .faq-grid,
  .asesorias-grid,
  .propuesta-grid,
  .guarantees-grid,
  .producto-grid {
    grid-template-columns: 1fr;
  }

  .best-option {
    transform: scale(1);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links { align-items: center; }

  .header-grid {
    grid-template-columns: 1fr;
    height: auto;
    padding: 12px 0;
    gap: 8px;
    text-align: center;
  }

  .header-contact { text-align: center; }

  .section-header h2 { font-size: 1.65rem; }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .reseller-inner {
    grid-template-columns: 1fr;
  }

  .reseller-highlight {
    padding: 28px 20px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
  }
}

/* =========================================
   PÁGINAS LEGALES
   ========================================= */

.legal-container {
  max-width: 780px;
}

.legal-content {
  background: white;
}

.legal-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-border);
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  color: var(--text-muted);
  padding-left: 20px;
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--color-primary);
  font-weight: 600;
}

.legal-content strong {
  color: var(--text-primary);
}

/* Tabla de cookies */

.cookie-table-wrapper {
  overflow-x: auto;
  margin: 20px 0 28px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

.cookie-table thead {
  background: var(--bg-surface-2);
}

.cookie-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--bg-border);
}

.cookie-table td {
  padding: 12px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--bg-border);
  vertical-align: top;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table code {
  background: var(--bg-surface-2);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: .85rem;
  color: var(--color-primary);
}


/* =========================================
   LIGHTBOX — producto-item hover
   ========================================= */

.producto-img-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.producto-img-link img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.producto-img-link:hover img {
  transform: scale(1.04);
}

.producto-zoom {
  position: absolute;
  inset: 0;
  background: rgba(39, 42, 76, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.producto-zoom span {
  background: white;
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.producto-img-link:hover .producto-zoom {
  background: rgba(39, 42, 76, 0.35);
}

.producto-img-link:hover .producto-zoom span {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   PRECIOS RESELLER — landing asesorías
   ========================================= */

.reseller-acceso {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 28px;
}

.acceso-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.acceso-inner h3 { font-weight: 800; margin-bottom: 6px; }
.acceso-inner p { color: var(--text-muted); margin: 0; }

.acceso-precio { text-align: center; flex-shrink: 0; }
.acceso-num { font-size: 3rem; font-weight: 800; color: var(--color-secondary); letter-spacing: -0.04em; display: block; }
.acceso-label { font-size: .9rem; color: var(--text-muted); }

.reseller-tabla {
  background: white;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 28px;
}

.reseller-tabla h3 {
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.reseller-modulos { display: flex; flex-direction: column; }

.reseller-modulo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--bg-border);
  gap: 20px;
}

.reseller-modulo:last-child { border-bottom: none; }

.reseller-modulo.destacado {
  background: #fffbeb;
  margin: 0 -40px;
  padding: 18px 40px;
  border-bottom: 1px solid #fde68a;
  border-top: 1px solid #fde68a;
}

.reseller-modulo-nombre { min-width: 200px; }
.reseller-modulo-nombre strong { display: block; font-weight: 700; margin-bottom: 2px; }
.reseller-modulo-nombre span { font-size: .88rem; color: var(--text-muted); }

.reseller-modulo-precios {
  display: flex;
  align-items: center;
  gap: 24px;
}

.precio-reseller,
.precio-publico,
.precio-margen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.precio-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.precio-num { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); }
.precio-num.verde { color: var(--color-secondary); }
.precio-divider { font-size: 1.2rem; color: var(--bg-border); font-weight: 300; }

.reseller-ejemplo {
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 28px;
}

.ejemplo-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ejemplo-header h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.ejemplo-header p { opacity: .8; margin-bottom: 28px; }

.ejemplo-calc {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
  opacity: .9;
}

.calc-row.total {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 14px;
  margin-top: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 1;
}

.calc-num { font-weight: 700; }
.calc-num.verde { color: #86efac; }
.calc-num.rojo { color: #fca5a5; }

.ejemplo-nota { font-size: .88rem; opacity: .65; margin: 0; }

.reseller-cta-bottom { text-align: center; margin-top: 40px; }

@media (max-width: 768px) {
  .acceso-inner { flex-direction: column; text-align: center; }
  .reseller-tabla { padding: 24px 20px; }
  .reseller-modulo { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reseller-modulo.destacado { margin: 0; padding: 18px 0; }
  .reseller-modulo-precios { gap: 14px; }
  .reseller-ejemplo { padding: 28px 20px; }
}