:root {
  --green-900: #0F1F1A;
  --green-800: #12342B;
  --green-700: #17483A;
  --green-500: #16A34A;
  --green-100: #EAF8EF;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #5B6F65;
  --gray-300: #E5E7E6;
  --gray-100: #F7F8F7;
  --white: #FFFFFF;
  --shadow: 0 24px 60px rgba(15, 31, 26, .10);
  --shadow-soft: 0 14px 34px rgba(15, 31, 26, .07);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, Arial, sans-serif;
  color: var(--green-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 31, 26, .08);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 185px; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .94rem; }
.nav-menu a { color: var(--green-900); opacity: .86; }
.nav-menu a:hover { opacity: 1; color: var(--green-500); }
.nav-login { color: var(--green-500) !important; }
.menu-toggle { display: none; background: none; border: 0; width: 32px; height: 24px; flex-direction: column; justify-content: space-between; cursor: pointer; }
.menu-toggle span { display: block; height: 3px; background: var(--green-900); border-radius: 999px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: all .22s ease;
  cursor: pointer;
}
.btn-small { min-height: 44px; padding: 10px 18px; }
.btn-primary { background: var(--green-500); color: #fff !important; box-shadow: 0 12px 26px rgba(22,163,74,.22); }
.btn-primary:hover { background: #11863c; transform: translateY(-2px); }
.btn-secondary { background: #fff; border-color: var(--gray-300); color: var(--green-900); }
.btn-secondary:hover { border-color: var(--green-500); transform: translateY(-2px); }

section { padding: 76px 0; }
.hero-section {
  padding: 136px 0 72px;
  min-height: 760px;
  background:
    radial-gradient(circle at 90% 22%, rgba(22,163,74,.16), transparent 30%),
    radial-gradient(circle at 10% 70%, rgba(22,163,74,.10), transparent 34%),
    linear-gradient(180deg, #F7F8F7 0%, #FFFFFF 100%);
}
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 56px; align-items: center;  }
.eyebrow, .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  background: var(--green-100);
  color: var(--green-500);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 999px; background: var(--green-500); }
.hero-copy h1 {
  font-size: clamp(2.7rem, 4.5vw, 5.05rem);
  line-height: .98;
  letter-spacing: -3px;
  margin-bottom: 24px;
}
.hero-copy h1 span { color: var(--green-500); }
.lead { font-size: 1.14rem; line-height: 1.72; color: var(--gray-600); max-width: 650px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 670px; }
.hero-trust div { background: #fff; border: 1px solid var(--gray-300); border-radius: 16px; padding: 14px 16px; box-shadow: 0 10px 24px rgba(15,31,26,.04); }
.hero-trust strong { display: block; font-size: .96rem; }
.hero-trust span { display: block; color: var(--gray-600); font-size: .78rem; line-height: 1.35; }
.hero-media { position: relative; }
.hero-media img { border-radius: 28px; box-shadow: var(--shadow); }

.essence-section { padding: 44px 0; border-top: 1px solid rgba(15,31,26,.08); border-bottom: 1px solid rgba(15,31,26,.08); }
.essence-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.essence-item { text-align: center; padding: 16px 10px; border-right: 1px solid var(--gray-300); }
.essence-item:last-child { border-right: none; }
.essence-item span { display: inline-block; width: 46px; height: 46px; margin-bottom: 12px; border: 3px solid var(--green-900); border-radius: 14px; position: relative; }
.essence-item h2 { font-size: 1rem; margin-bottom: 7px; }
.essence-item p { color: var(--gray-600); font-size: .86rem; line-height: 1.45; }
.icon-eye { border-radius: 999px !important; }
.icon-eye:after { content: ''; position: absolute; width: 10px; height: 10px; border-radius: 999px; background: var(--green-500); left: 15px; top: 15px; }
.icon-bars:before { content: ''; position: absolute; left: 10px; bottom: 8px; width: 5px; height: 14px; background: var(--green-900); box-shadow: 11px -8px 0 var(--green-900), 22px -18px 0 var(--green-500); }
.icon-shield:before { content: '✓'; position: absolute; color: var(--green-500); font-weight: 900; font-size: 24px; left: 11px; top: 5px; }
.icon-bell:before { content: ''; position: absolute; left: 11px; top: 9px; width: 18px; height: 22px; border: 3px solid var(--green-900); border-radius: 18px 18px 8px 8px; }
.icon-users:before, .icon-users:after { content: ''; position: absolute; border: 3px solid var(--green-900); border-radius: 999px; }
.icon-users:before { width: 13px; height: 13px; left: 7px; top: 9px; }
.icon-users:after { width: 13px; height: 13px; right: 7px; top: 9px; border-color: var(--green-500); }

.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: stretch; }
.panel { border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-soft); }
.panel-light { background: #fff; border: 1px solid var(--gray-300); }
.panel-dark { background: linear-gradient(135deg, var(--green-900), #08251B); color: #fff; }
.panel h2 { font-size: clamp(1.8rem, 2.6vw, 2.65rem); line-height: 1.08; margin-bottom: 18px; }
.panel p { color: var(--gray-600); margin-bottom: 20px; }
.panel-dark p, .panel-dark li { color: rgba(255,255,255,.82); }
.label-dark { background: rgba(255,255,255,.12); color: #fff; }
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: var(--gray-700); }
.check-list li:before { content: '×'; font-weight: 900; color: #DC2626; }
.check-list.positive li:before { content: '✓'; color: var(--green-500); }

.section-header { text-align: center; max-width: 820px; margin: 0 auto 42px; }
.section-header h2, .feature-grid h2, .brand-copy h2, .contact-box h2 { font-size: clamp(2rem, 3.2vw, 3.35rem); line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 14px; }
.section-header p, .feature-grid p, .brand-copy p, .contact-box p { color: var(--gray-600); font-size: 1.04rem; }
.steps-section, .cases-section { background: var(--gray-100); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card, .cases-grid article, .features-list article, .plan-card {
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(15,31,26,.045);
}
.step-card strong { color: var(--green-500); font-size: .85rem; }
.step-card h3, .cases-grid h3, .features-list h3, .plan-card h3 { font-size: 1.2rem; margin: 10px 0; }
.step-card p, .cases-grid p, .features-list p, .plan-card p { color: var(--gray-600); font-size: .94rem; }

.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.feature-grid .btn { margin-top: 10px; }
.features-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.features-list article { border-left: 5px solid var(--green-500); }

.brand-section { background: #fff; }
.brand-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 42px; align-items: center; }
.brand-grid img { border-radius: 24px; box-shadow: var(--shadow); border: 1px solid var(--gray-300); }

.cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cases-grid article { background: #fff; }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; }
.plan-card.featured { border: 2px solid var(--green-500); transform: translateY(-8px); }
.badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green-500); color: #fff; border-radius: 999px; padding: 7px 13px; font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 10px; }
.price strong { font-size: 2.2rem; letter-spacing: -1px; }
.price span { color: var(--gray-600); }
.plan-card ul { list-style: none; margin: 20px 0 24px; display: grid; gap: 10px; color: var(--gray-700); }
.plan-card li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; }
.plan-card li:before { content: '✓'; color: var(--green-500); font-weight: 900; }
.plan-card .btn { margin-top: auto; width: 100%; }

.contact-section { padding-bottom: 90px; }
.contact-box { background: linear-gradient(135deg, var(--green-900), #08251B); color: #fff; border-radius: 28px; padding: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; box-shadow: var(--shadow); }
.contact-box p { color: rgba(255,255,255,.78); }
.contact-actions { display: grid; gap: 14px; }
.contact-actions p { font-size: .88rem; margin-top: 4px; }

.site-footer { background: var(--green-900); color: #fff; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 42px; }
.footer-logo { width: 190px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.site-footer p, .footer-bottom { color: rgba(255,255,255,.68); }
.site-footer h3 { margin-bottom: 14px; color: #fff; }
.site-footer a { display: block; color: rgba(255,255,255,.72); margin-bottom: 9px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 22px; font-size: .88rem; }

@media(max-width: 1024px) {
  .hero-grid, .feature-grid, .brand-grid, .split-grid, .contact-box { grid-template-columns: 1fr; }
  .hero-section { min-height: auto; }
  .hero-copy h1 { max-width: 850px; }
  .essence-grid { grid-template-columns: repeat(2, 1fr); }
  .essence-item { border-right: none; border-bottom: 1px solid var(--gray-300); }
  .steps-grid, .cases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 820px) {
  .nav-wrap { height: 72px; }
  .brand img { width: 150px; }
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-300);
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-soft);
  }
  .nav-menu.active { display: flex; }
  .nav-menu .btn { width: 100%; }
  .hero-section { padding-top: 112px; }
  .hero-copy h1 { font-size: 2.55rem; letter-spacing: -1.5px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust, .features-list, .plans-grid, .footer-grid { grid-template-columns: 1fr; }
  .steps-grid, .cases-grid, .essence-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .panel, .contact-box { padding: 26px; border-radius: 20px; }
  section { padding: 56px 0; }
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 190px;
  object-fit: contain;
  border: 0;
}

/* Ajustes hero beta - 2026-05-18 */
.hero-section {
  padding: 118px 0 64px;
  min-height: auto;
}

.hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 4.05vw, 4.45rem);
  line-height: 1;
  letter-spacing: -2.6px;
  max-width: 680px;
}

.hero-copy .lead {
  max-width: 640px;
}

.hero-media {
  align-self: center;
  display: flex;
  justify-content: flex-end;
}

.hero-media img {
  width: min(100%, 560px);
  border-radius: 28px;
}

@media (min-width: 1180px) {
  .hero-media {
    transform: translateY(24px);
  }
}

@media(max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-content: center;
    transform: none;
  }

  .hero-media img {
    width: min(100%, 720px);
  }
}

@media(max-width: 820px) {
  .hero-section {
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    letter-spacing: -1.5px;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-media img {
    border-radius: 20px;
  }
}
