:root{
  /* Ajusta aquí según tu logo */
  --accent: #F06040;
  --text: #111;
  --muted: #5b5b5b;
  --bg: #fff;
  --soft: #f6f7f8;
  --border: rgba(0,0,0,.10);
  --shadow: 0 14px 36px rgba(0,0,0,.10);
  --radius: 18px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }

.muted{ color: var(--muted); line-height:1.55; }

/* Top */
.top{
  position: sticky; top:0; z-index:50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.top__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__logo{ height:34px; width:auto; }
.brand__name{ font-weight:800; letter-spacing:.4px; }

.nav{ display:flex; gap:18px; align-items:center; }
.nav a{ font-weight:600; color:#222; opacity:.92; }
.nav a:hover{ color: var(--accent); }

.burger{
  display:none; background:transparent; border:0; cursor:pointer; padding:10px;
}
.burger span{ display:block; width:22px; height:2px; background:#111; margin:5px 0; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color:#fff;
  font-weight:800;
  box-shadow: 0 10px 22px rgba(240,96,64,.22);
}
.btn:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}
.btn--ghost:hover{ border-color: rgba(0,0,0,.22); color: var(--accent); }
.btn--small{ padding: 10px 14px; }

/* Hero */
.hero{ padding: 24px 0 10px; }
.hero__wrap{ position:relative; }

.heroCard{
  display:none;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:stretch;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.heroCard--active{ display:grid; }

.heroCard__copy{ padding: 26px; background: #fff; }
.kicker{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(240,96,64,.10);
  border: 1px solid rgba(240,96,64,.24);
  font-weight: 800;
  font-size: 13px;
  margin:0 0 12px;
}
.hero h1{ margin: 0 0 10px; font-size: clamp(30px, 3.3vw, 46px); line-height:1.07; }
.hero h2{ margin: 0 0 10px; font-size: clamp(26px, 3vw, 40px); line-height:1.1; }
.lead{ margin: 0 0 16px; color: var(--muted); line-height:1.6; }
.heroCard__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 16px; }

.heroBadges{ display:flex; gap:12px; flex-wrap:wrap; }
.badge{
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--soft);
}
.badge b{ display:block; font-weight:900; }
.badge span{ display:block; color: var(--muted); font-size: 13px; margin-top:3px; }

.heroCard__media{ background:#000; }
.heroCard__media img{
  width:100%;
  height:100%;
  min-height: 340px;
  object-fit: cover;
  filter: saturate(1.05);
}

.heroDots{
  display:flex;
  gap:10px;
  justify-content:center;
  padding: 14px 0 0;
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.22);
  background: transparent;
  cursor:pointer;
}
.dot--on{ background: var(--accent); border-color: var(--accent); }

/* Sections */
.section{ padding: 52px 0; }
.section--soft{ background: var(--soft); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

.head{
  display:flex; align-items:end; justify-content:space-between;
  gap:16px; margin-bottom: 16px;
}
.head--stack{ flex-direction:column; align-items:flex-start; }
.head h2{ margin:0; font-size: 30px; }
.link{ color: var(--accent); font-weight:800; }

/* Grid blocks like “cards” */
.grid{ display:grid; gap:14px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }

.tile{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.tile__icon{ font-size: 22px; }
.tile h3{ margin: 10px 0 8px; }
.tile p{ margin:0; color: var(--muted); line-height:1.55; }

.feature{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.80);
  padding: 18px;
}
.feature h3{ margin:0 0 8px; }
.feature p{ margin:0; color: var(--muted); line-height:1.55; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items:center;
}
.split__media img{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width:100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.checks{ list-style:none; padding:0; margin: 14px 0 16px; }
.checks li{
  position:relative;
  padding-left: 28px;
  margin: 10px 0;
}
.checks li::before{
  content:"";
  position:absolute; left:0; top:6px;
  width: 16px; height:16px;
  border-radius:6px;
  background: rgba(240,96,64,.20);
  border: 1px solid rgba(240,96,64,.35);
  box-shadow: inset 0 0 0 3px rgba(240,96,64,.16);
}

.box{
  border-radius: var(--radius);
  border: 1px solid rgba(240,96,64,.28);
  background: rgba(240,96,64,.08);
  padding: 16px;
}
.box h3{ margin:0 0 8px; }
.box p{ margin:0; color: var(--muted); line-height:1.55; }

/* CTA Band */
.ctaBand{
  padding: 56px 0;
  background: linear-gradient(135deg, rgba(240,96,64,.14), rgba(0,0,0,.02));
  border-top: 1px solid var(--border);
}
.ctaBand__inner{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: calc(var(--radius) + 10px);
  padding: 22px;
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow);
}
.ctaBand__actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* Footer */
.footer{
  padding: 34px 0 18px;
  border-top:1px solid var(--border);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.footer__grid a{ display:block; color: var(--muted); margin-top:10px; }
.footer__grid a:hover{ color: var(--accent); }
.footer__brand{ display:flex; gap:10px; align-items:center; }
.footer__brand img{ height: 30px; width:auto; }
.footer__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

/* Mobile */
@media (max-width: 980px){
  .heroCard{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .nav{ display:none; }
  .burger{ display:block; }
  body.nav-open .nav{
    display:flex;
    position:absolute;
    right: 20px;
    top: 64px;
    flex-direction:column;
    background:#fff;
    border:1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .ctaBand__inner{ flex-direction:column; align-items:flex-start; }
}