:root{
  --bg:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;
  --soft:#f6f7fb;
  --pill:#f1f5f9;
  --accent:#d66a1f;   /* naranja */
  --accent2:#0b1220;
  --radius:16px;
  --shadow: 0 18px 50px rgba(2,6,23,.08);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
}

a{ color:inherit; text-decoration:none; }
.page{ min-height: calc(100vh - 140px); }

/* ===== TOPBAR ===== */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 210px;
}

.brand__mark{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: #fff7ed;
  color: var(--accent);
  border: 1px solid #fed7aa;
}

.brand__name{
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--accent);
  font-size: 14px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex:1;
}

.nav__pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: #fff;
  color: #111827;
  font-weight: 600;
  font-size: 13px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.nav__pill:hover{
  transform: translateY(-1px);
  border-color:#cbd5e1;
  background: #fafafa;
}

.nav__pill.is-active{
  background: #fff7ed;
  border-color:#fed7aa;
  color: #9a3412;
}

/* burger */
.nav-toggle{
  display:none;
  margin-left:auto;
  width:44px; height:40px;
  border-radius: 12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#111827;
  margin:4px auto;
  border-radius: 2px;
}

/* ===== LAYOUT ===== */
.section{
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 16px;
}

.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
  padding-top: 26px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border:1px solid #fed7aa;
  background:#fff7ed;
  color:#9a3412;
  font-weight: 700;
  font-size: 13px;
}

.h1{
  margin: 14px 0 10px;
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: -1.3px;
}
.lead{
  margin:0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 980px;
}

.actions{
  display:flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight: 800;
  font-size: 13px;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); border-color:#cbd5e1; }
.btn.primary{
  background: var(--accent);
  border-color: transparent;
  color:#fff;
  box-shadow: 0 12px 30px rgba(214,106,31,.18);
}
.btn.primary:hover{ box-shadow: 0 18px 40px rgba(214,106,31,.24); }

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: 0 14px 40px rgba(2,6,23,.04);
}
.stat{
  padding: 14px 14px 12px;
}
.stat__big{
  font-weight: 900;
  font-size: 22px;
}
.stat__small{
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

/* visual right */
.visual{
  border:1px solid var(--line);
  border-radius: 22px;
  background: radial-gradient(1200px 300px at 50% 0%, rgba(214,106,31,.10), transparent 55%),
              linear-gradient(#fff, #fff);
  box-shadow: var(--shadow);
  padding: 24px;
  min-height: 360px;
  display:grid;
  place-items:center;
}
.visual__inner{
  width:min(420px, 100%);
  aspect-ratio: 1/1;
  border-radius: 32px;
  border: 8px solid #e2e8f0;
  background: #fff7ed;
  display:grid;
  place-items:center;
}
.visual__icon{
  width: 115%;
  /*max-width: 260px;*/
  color: var(--accent);
}

/* content blocks */
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.block{
  padding: 18px;
}
.block h2{
  margin:0 0 10px;
  font-size: 20px;
}
.block p{
  margin:0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.hr{
  height:1px;
  background: var(--line);
  margin: 18px 0;
}

/* accordion */
.acc{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.acc-item{
  border:1px solid var(--line);
  border-radius: 14px;
  background:#fff;
  overflow:hidden;
}
.acc-btn{
  width:100%;
  padding: 14px 14px;
  border:0;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  cursor:pointer;
  font-weight: 800;
}
.acc-content{
  padding: 0 14px 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  display:none;
}
.acc-item.is-open .acc-content{ display:block; }
.chev{
  width:10px; height:10px;
  border-right:2px solid #111827;
  border-bottom:2px solid #111827;
  transform: rotate(45deg);
  transition: transform .15s ease;
}
.acc-item.is-open .chev{ transform: rotate(225deg); }

/* contact */
.form{
  display:grid;
  gap: 10px;
}
.field label{
  font-size: 12px;
  font-weight: 800;
  color:#111827;
}
.field input, .field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border:1px solid var(--line);
  outline:none;
  font-family: inherit;
}
.field textarea{ min-height: 120px; resize: vertical; }

/* footer */
.footer{
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer__inner{
  max-width: 1180px;
  margin:0 auto;
  padding: 18px 16px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
}
.footer__brand{ font-weight: 900; color: var(--accent2); }
.footer__small{ color: var(--muted); font-size: 12px; margin-top:6px; }
.footer__right{ display:flex; gap: 12px; flex-wrap: wrap; }
.footer__link{
  font-weight: 700;
  color:#111827;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background:#fff;
}

/* WhatsApp floating */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #22c55e;
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow: 0 18px 40px rgba(2,6,23,.20);
  border: 1px solid rgba(255,255,255,.35);
  z-index: 80;
  transition: transform .15s ease;
}
.wa-float:hover{ transform: translateY(-2px); }

/* responsive */
@media (max-width: 980px){
  .h1{ font-size: 44px; }
  .hero{ grid-template-columns: 1fr; }
  .visual{ min-height: 300px; }
}

@media (max-width: 860px){
  .nav-toggle{ display:block; }
  .nav{
    position: fixed;
    inset: 70px 16px auto 16px;
    background:#fff;
    border:1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 10px;
  }
  .nav.is-open{ display:flex; }
  .nav__pill{ width:100%; }
  .brand{ min-width: 0; }
  .grid2{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
}
