@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&display=swap');

/* ── Variables ── */
:root {
  --black:   #111111;
  --white:   #FFFFFF;
  --primary:  #5F8C0E;
  --secondary: #7CB518;
  --accent-hi: #7CB518;
  --gray1:   #1C1917;
  --gray2:   #57534E;
  --gray3:   #A8A29E;
  --line:    #E7E5E4;
  --bg:      #FAFAFA;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray1);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Cursor personalizado ── */
.cursor {
  width: 12px; height: 12px;
  background: var(--white);
  box-shadow: 0 0 0 1.5px rgba(0,0,0,0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  transform: translate(-50%, -50%);
}
.cursor.hover {
  width: 40px; height: 40px;
  background: transparent;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1.5px rgba(0,0,0,0.3);
}
@media (hover: none) { .cursor { display: none; } body { cursor: auto; } }

/* ── Navegación ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(17,17,17,0.96);
  padding: 1rem 4rem;
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-logo span { color: var(--primary); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--secondary) !important; }
/* Cuando el nav está scrolled (fondo negro), el cta vuelve naranja */
nav.scrolled .nav-cta {
  background: var(--primary) !important;
}
nav.scrolled .nav-cta:hover {
  background: var(--secondary) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: none;
  outline: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #FFFFFF;
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2E3133;
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%; height: 110%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(30%) sepia(20%) hue-rotate(80deg) saturate(0.8) brightness(0.85);
}
.hero-stripe {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 820px;
}
.hero-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--secondary) !important;
}
.hero-sub {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}
.hero-actions {
  margin-top: 2.8rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--secondary); transform: translateY(-2px); }
/* btn-primary sobre fondo claro */
.btn-orange { background: var(--primary) !important; }
.btn-orange:hover { background: var(--secondary) !important; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding: 0;
  padding-bottom: 3px;
  letter-spacing: 0;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.hero-scroll { display: none; }
.hero-stripe-text {
  display: none;
}

/* ── Secciones generales ── */
section { position: relative; }
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gray1);
}
.section-title em {
  font-style: normal;
  color: var(--primary);
}
.section-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray2);
  line-height: 1.75;
  max-width: 560px;
}

/* ── Reveal al scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Stats / números grandes ── */
.stats-section {
  padding: 7rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  padding: 3rem 4rem;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.stat-label {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--gray2);
  font-weight: 400;
  line-height: 1.5;
}
.stat-source {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--gray3);
}

/* ── Sección problema / split ── */
.split-section {
  padding: 9rem 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}
.split-left { position: sticky; top: 8rem; }
.split-right { padding-top: 0.5rem; }
.pain-list { margin-top: 3rem; }
.pain-item {
  display: grid;
  grid-template-columns: 1px 1fr;
  gap: 1.6rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.pain-item:first-child { border-top: 1px solid var(--line); }
.pain-bar {
  width: 1px;
  background: var(--line);
  transition: background 0.3s;
}
.pain-item:hover .pain-bar { background: var(--primary); }
.pain-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray1);
  margin-bottom: 0.4rem;
}
.pain-desc {
  font-size: 0.9rem;
  color: var(--gray2);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Sección módulos ── */
.modules-section {
  padding: 9rem 0;
  background: var(--black);
}
.modules-section .section-title { color: var(--white); }
.modules-section .section-body { color: rgba(255,255,255,0.5); }
.modules-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.module-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.4s var(--ease);
}
.module-card:hover::before { width: 100%; }
.module-card:hover { background: rgba(255,255,255,0.03); }
.module-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.module-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.module-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Parallax sections ── */
.parallax-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  will-change: transform;
}
.parallax-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.2;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.7) 100%);
}
.parallax-content {
  position: relative;
  z-index: 2;
  padding: 6rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ── Sección para quién ── */
.audience-section {
  padding: 9rem 0;
  background: var(--bg);
}
.audience-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.audience-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
}
.audience-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1rem;
}
.audience-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray1);
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.audience-body {
  font-size: 0.9rem;
  color: var(--gray2);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CTA central ── */
.cta-section {
  padding: 0;
}

/* ── Proceso / onboarding ── */
.process-section {
  padding: 9rem 0;
  background: var(--white);
}
.process-steps {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  padding: 3rem 2.5rem 3rem 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: none; padding-right: 0; padding-left: 2.5rem; }
.process-step:not(:first-child):not(:last-child) { padding: 3rem 2.5rem; }
.step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray1);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--gray2);
  line-height: 1.7;
  font-weight: 300;
}
.step-bar {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 1.2s var(--ease);
}
.process-step.visible .step-bar { width: 100%; }

/* ── Testimonio ── */
.testimonial-section {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--gray1);
  max-width: 880px;
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid var(--primary);
}
.testimonial-author {
  margin-top: 2rem;
  margin-left: 2rem;
  font-size: 0.875rem;
  color: var(--gray3);
  font-weight: 400;
}

/* ── Footer ── */
footer {
  background: var(--black);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.4rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── Páginas internas (privacidad/términos) ── */
.page-hero {
  padding: 12rem 0 6rem;
  background: var(--black);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--white);
  letter-spacing: 0.02em;
}
.page-hero h1 span { color: var(--primary); }
.page-hero .page-meta {
  margin-top: 1.2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}
.page-content {
  padding: 6rem 0 8rem;
  background: var(--white);
}
.page-content .section-inner {
  max-width: 800px;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--gray1);
  margin: 3rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.page-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.page-content p {
  font-size: 1rem;
  color: var(--gray2);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.page-content ul li {
  font-size: 1rem;
  color: var(--gray2);
  line-height: 1.85;
  margin-bottom: 0.4rem;
  font-weight: 300;
}
.page-content strong { color: var(--gray1); font-weight: 600; }
.page-content a { color: var(--primary); border-bottom: 1px solid rgba(234,88,12,0.3); transition: border-color 0.2s; }
.page-content a:hover { border-color: var(--primary); }

/* ── Animaciones ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .section-inner { padding: 0 2.5rem; }
  nav { padding: 1.2rem 2.5rem; }
  nav.scrolled { padding: 0.8rem 2.5rem; }
  .hero-content { max-width: 80%; padding: 0 2.5rem; }
  .hero-scroll { left: 2.5rem; }
  .split-grid { gap: 4rem; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 1px solid var(--line); }
  .process-step:last-child { border-top: 1px solid var(--line); padding-left: 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta { font-size: 1.2rem !important; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: clamp(3rem, 10vw, 5rem); }
  .hero-stripe, .hero-stripe-text { width: 0; overflow: hidden; }
  .hero-content { max-width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: none; }
  .split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .split-left { position: static; }
  .audience-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step, .process-step:last-child, .process-step:not(:first-child):not(:last-child) { padding: 2.5rem 0; border-right: none; padding-left: 0; border-top: 1px solid var(--line); }
  .process-step:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .parallax-content { padding: 4rem 2.5rem; }
}

@media (max-width: 480px) {
  .section-inner { padding: 0 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .stat-item { padding: 2rem 1.5rem; }
}

/* Formulario contacto — placeholders visibles */
.contact-form input::placeholder { color: rgba(255,255,255,0.6); }
.contact-form input { color: var(--white); }
.contact-form input:-webkit-autofill { -webkit-text-fill-color: #fff; }
.contact-form .btn-submit {
  background: var(--white) !important;
  color: var(--black) !important;
}
.contact-form .btn-submit:hover {
  background: rgba(255,255,255,0.88) !important;
  color: var(--black) !important;
}

/* Page hero compacto */
.page-hero {
  padding: 7rem 0 3rem !important;
}
.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem) !important;
}

/* Logo — siempre un color */
.nav-logo { color: var(--white); }
.nav-logo.dark { color: var(--black); }

/* Nav en páginas internas — siempre oscuro de entrada */
.page-nav { background: rgba(17,17,17,0.97) !important; }

.hero-content { background: transparent !important; }
.hero h1 { background: transparent !important; text-shadow: none; }
.hero-bg { background: transparent; }

/* ── Hero rediseñado — layout vertical completo ── */
.hero {
  display: grid !important;
  grid-template-rows: 1fr auto;
  align-items: stretch !important;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 2rem !important;
  max-width: 100% !important;
}
.hero h1 {
  font-size: clamp(4.5rem, 10vw, 9rem) !important;
  line-height: 0.88 !important;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--white);
}
.hero-sub {
  font-size: 1.05rem !important;
  color: rgba(255,255,255,0.85) !important;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions {
  margin-top: 0 !important;
}

/* Stats dentro del hero — franja inferior */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 0 4rem;
  background: rgba(0,0,0,0.18);
}
.hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.2rem;
  align-items: center;
  padding: 1.8rem 0;
}
.hero-stat-num {
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  font-weight: 400;
  align-self: end;
}
.hero-stat-src {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  align-self: start;
  margin-top: 0.2rem;
}
.hero-stat-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  margin: 0 3rem;
}

/* Quitar la sección de stats separada — ya está en el hero */
.stats-section { display: none; }

/* Responsive hero stats */
@media (max-width: 768px) {
  .hero-content { padding: 7rem 1.5rem 1.5rem !important; }
  .hero h1 { font-size: clamp(3.2rem, 12vw, 5.5rem) !important; }
  .hero-stats {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
  .hero-stat { padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-div { display: none; }
  .stats-section { display: none; }
}
@media (max-width: 480px) {
  .hero-content { padding: 6rem 1.5rem 1rem !important; }
}

/* Versión verde — números stats en verde claro para contraste sobre oscuro */
.hero-stat-num { color: #7CB518 !important; }
.hero-stat-label { color: rgba(255,255,255,0.85) !important; }
/* Barra divisora stats */
.hero-stat-div { background: rgba(255,255,255,0.25) !important; }
/* Franja stats — fondo aún más oscuro */
.hero-stats { background: rgba(0,0,0,0.25) !important; }

/* ── Hero mobile — stats completos sin cortar ── */
@media (max-width: 768px) {
  .hero {
    height: auto !important;
    min-height: 100svh;
    padding-bottom: 0;
  }
  .hero-bg {
    position: absolute !important;
    top: 0; left: 0;
    width: 100%;
    height: 100% !important;
    min-height: 100%;
  }
  .hero-stats {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr !important;
    padding: 0 1.5rem !important;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-stat {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-sizing: border-box;
  }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-div { display: none !important; }
}

/* ── Formulario contacto — responsive mobile ── */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}
