/* ========================================= */
/* PALETA (LA MISMA QUE TRAÍAMOS) */
/* ========================================= */
:root{
  --primary:#0c1933;

  --bg:#f2efe7;
  --surface:#ffffff;
  --surface-alt:#e7e1d2;

  --text:#1b1f24;
  --muted:#5f6b73;

  --ink:#0f141a;

  --accent:#b36a3c;
  --accent-ink:#ffffff;

  --link:#0b4f6c;

  --border:#cfc7b3;
  --border-2:#ddd6c6;

  --shadow:0 10px 22px rgba(15,20,26,.14);
  --shadow-soft:0 8px 16px rgba(15,20,26,.10);

  --radius:14px;
  --radius-sm:12px;

  --container:1120px;
}

/* ========================================= */
/* RESET / BASE */
/* ========================================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.section{
  padding:68px 0;
  background:transparent;
}
.section-alt{
  background:var(--surface-alt);
  border-top:1px solid var(--border-2);
  border-bottom:1px solid var(--border-2);
}

.section-head{
  max-width:920px;
  margin:0 0 26px 0;
}
.section-title{
  margin:0 0 10px 0;
  font-size:34px;
  letter-spacing:.2px;
  color:var(--primary);
}
.section-subtitle{
  margin:0;
  color:var(--muted);
  font-size:16px;
}

/* ========================================= */
/* BOTONES / INPUTS */
/* ========================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--border);
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  user-select:none;
}
.btn:active{ transform:translateY(1px); }

.btn-primary{
  background:var(--primary);
  color:#ffffff;
  border-color:#0a142b;
  box-shadow:var(--shadow-soft);
}
.btn-primary:hover{ background:#0a142b; }

.btn-ghost{
  background:var(--surface);
  color:var(--primary);
  border-color:var(--border);
}
.btn-ghost:hover{ background:rgba(179,106,60,.08); border-color:rgba(179,106,60,.35); }

.btn-accent{
  background:var(--accent);
  color:var(--accent-ink);
  border-color:#9f5d34;
  box-shadow:var(--shadow-soft);
}
.btn-accent:hover{ background:#9f5d34; }

.btn-ghost-dark{
  background:transparent;
  color:#ffffff;
  border-color:rgba(255,255,255,.60);
}
.btn-ghost-dark:hover{ background:rgba(255,255,255,.10); }

.btn-full{ width:100%; }

.label{
  display:block;
  font-size:13px;
  font-weight:800;
  color:inherit;
  margin:0 0 6px 0;
}

.input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  outline:none;
}
.input:focus{
  border-color:rgba(179,106,60,.65);
  box-shadow:0 0 0 3px rgba(179,106,60,.18);
}
.textarea{ resize:vertical; min-height:110px; }

/* ========================================= */
/* NAVBAR (NORMAL) */
/* ========================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--surface);
  border-bottom:1px solid var(--border-2);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  min-width:140px;
}
.brand-logo{
  height:100px;
  width:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-link{
  padding:10px 12px;
  border-radius:10px;
  color:var(--text);
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid transparent;
}
.nav-link:hover{
  background:rgba(11,79,108,.08);
  border-color:rgba(11,79,108,.20);
}
.nav-link.is-active{
  color:var(--primary);
  border-color:rgba(179,106,60,.55);
  background:rgba(179,106,60,.12);
}
.nav-cta{
  color:#ffffff;
  background:var(--primary);
  border-color:#0a142b;
}
.nav-cta:hover{ background:#0a142b; }

/* ========================================= */
/* NAVBAR (RESPONSIVO) */
/* ========================================= */
.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}
.nav-toggle-bar{
  display:block;
  width:22px;
  height:2px;
  background:var(--primary);
  margin:4px 0;
}

@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav{
    position:fixed;
    left:0;
    right:0;
    top:72px;
    background:var(--surface);
    border-bottom:1px solid var(--border-2);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px 16px 16px 16px;
  }
  .nav.is-open{ display:flex; }
  .nav-link{
    padding:12px 12px;
    border-radius:12px;
    border:1px solid var(--border-2);
    margin-top:10px;
    background:var(--surface);
  }
  .brand-logo{
    height:70px;
  }
  .nav-cta{
    color:#ffffff;
    background:var(--primary);
    border-color:#0a142b;
  }
  .nav-cta:hover{ background:#0a142b; }
}

/* ========================================= */
/* EMPRESAS */
/* ========================================= */
.biz-hero{
  padding:64px 0 30px 0;
  background:linear-gradient(180deg, rgba(12,25,51,.06), rgba(242,239,231,0));
}

.biz-hero-inner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}

.biz-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(179,106,60,.12);
  border:1px solid rgba(179,106,60,.30);
  color:var(--primary);
  font-weight:900;
  letter-spacing:.2px;
  width:fit-content;
}

.biz-hero-title{
  margin:12px 0 8px 0;
  font-size:42px;
  line-height:1.08;
  letter-spacing:.2px;
  color:var(--primary);
}

.biz-hero-subtitle{
  margin:0;
  color:var(--muted);
  font-weight:700;
  font-size:16px;
  max-width:820px;
}

.biz-hero-actions{
  display:flex;
  gap:10px;
  margin-top:16px;
  flex-wrap:wrap;
}

.biz-hero-stats{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}

.biz-stat{
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:14px;
  padding:12px;
  box-shadow:var(--shadow-soft);
}

.biz-stat-k{
  color:var(--muted);
  font-weight:900;
  font-size:12px;
  letter-spacing:.2px;
  margin-bottom:6px;
}

.biz-stat-v{
  color:var(--text);
  font-weight:900;
  font-size:13px;
}

.biz-hero-card{
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.biz-hero-card-title{
  font-weight:900;
  color:var(--primary);
  letter-spacing:.2px;
  margin-bottom:6px;
}

.biz-hero-card-sub{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.biz-hero-checklist{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.biz-check{
  display:flex;
  gap:12px;
  align-items:center;
  border:1px solid var(--border-2);
  background:rgba(12,25,51,.03);
  border-radius:14px;
  padding:12px;
}

.biz-check-ico{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(11,107,58,.10);
  border:1px solid rgba(11,107,58,.18);
  color:#0b6b3a;
  flex:0 0 auto;
}
.biz-check-ico i{ font-size:13px; }

.biz-check-txt{
  color:var(--muted);
  font-weight:800;
  line-height:1.5;
  font-size:13px;
}

.biz-hero-card-actions{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}

.biz-section{
  padding:34px 0 22px 0;
}

.biz-head{
  margin-bottom:14px;
}

.biz-h2{
  margin:0 0 10px 0;
  color:var(--primary);
  font-weight:900;
  letter-spacing:.2px;
  font-size:28px;
}

.biz-sub{
  margin:0;
  color:var(--muted);
  font-weight:700;
  max-width:860px;
}

.biz-benefits{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.biz-benefit{
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.biz-benefit-ico{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(179,106,60,.10);
  border:1px solid rgba(179,106,60,.22);
  color:var(--primary);
  margin-bottom:12px;
}
.biz-benefit-ico i{ font-size:18px; }

.biz-benefit-title{
  margin:0 0 8px 0;
  color:var(--text);
  font-weight:900;
  letter-spacing:.2px;
  font-size:16px;
}

.biz-benefit-text{
  margin:0;
  color:var(--muted);
  font-weight:700;
  line-height:1.6;
  font-size:13px;
}

.biz-modes{
  padding:18px 0 22px 0;
}

.biz-modes-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.biz-mode{
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.biz-mode-top{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:10px;
}

.biz-mode-ico{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(12,25,51,.06);
  border:1px solid rgba(12,25,51,.12);
  color:var(--primary);
  flex:0 0 auto;
}
.biz-mode-ico i{ font-size:18px; }

.biz-mode-title{
  font-weight:900;
  color:var(--text);
  letter-spacing:.2px;
  font-size:16px;
}

.biz-mode-text{
  margin:0 0 10px 0;
  color:var(--muted);
  font-weight:700;
  line-height:1.6;
}

.biz-mode-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  font-weight:700;
  line-height:1.7;
}

.biz-areas{
  padding:18px 0 26px 0;
}

.biz-areas-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
}

.biz-area{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:16px;
  padding:16px;
  box-shadow:var(--shadow-soft);
}

.biz-area-ico{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(179,106,60,.10);
  border:1px solid rgba(179,106,60,.22);
  color:var(--primary);
  flex:0 0 auto;
}
.biz-area-ico i{ font-size:18px; }

.biz-area-title{
  font-weight:900;
  color:var(--text);
  letter-spacing:.2px;
  margin-bottom:4px;
}

.biz-area-text{
  color:var(--muted);
  font-weight:700;
  line-height:1.6;
  font-size:13px;
}

.biz-areas-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.biz-process{
  padding:18px 0 42px 0;
}

.biz-steps{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
}

.biz-step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:16px;
  padding:16px;
  box-shadow:var(--shadow-soft);
}

.biz-step-num{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(11,79,108,.06);
  border:1px solid rgba(11,79,108,.18);
  color:var(--primary);
  font-weight:900;
  flex:0 0 auto;
}

.biz-step-title{
  font-weight:900;
  color:var(--text);
  letter-spacing:.2px;
  margin-bottom:4px;
}

.biz-step-text{
  color:var(--muted);
  font-weight:700;
  line-height:1.6;
  font-size:13px;
}

.biz-cta{
  padding:26px 0 68px 0;
}

.biz-cta-inner{
  background:rgba(179,106,60,.10);
  border:1px solid rgba(179,106,60,.22);
  border-radius:18px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  box-shadow:var(--shadow-soft);
}

.biz-cta-title{
  margin:0 0 6px 0;
  color:var(--primary);
  font-weight:900;
  letter-spacing:.2px;
  font-size:24px;
}

.biz-cta-text{
  margin:0;
  color:var(--muted);
  font-weight:700;
  max-width:760px;
}

.biz-cta-right{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.biz-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  letter-spacing:.2px;
  border:1px solid rgba(11,79,108,.22);
  background:var(--surface);
  color:var(--primary);
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.biz-cta-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(179,106,60,.35);
  background:rgba(179,106,60,.06);
}
.biz-cta-btn.outline{
  background:transparent;
  border:1px solid rgba(179,106,60,.30);
}

@media (max-width: 980px){
  .biz-hero-inner{ grid-template-columns:1fr; }
  .biz-hero-title{ font-size:34px; }
  .biz-hero-stats{ grid-template-columns:1fr; }
  .biz-benefits{ grid-template-columns:1fr; }
  .biz-modes-grid{ grid-template-columns:1fr; }
  .biz-areas-grid{ grid-template-columns:1fr; }
  .biz-steps{ grid-template-columns:1fr; }
  .biz-cta-inner{ flex-direction:column; align-items:flex-start; }
  .biz-cta-right{ width:100%; }
  .biz-cta-btn{ width:100%; }
}




/* ========================================= */
/* FOOTER */
/* ========================================= */
.footer{
  padding:38px 0 18px 0;
  border-top:1px solid var(--border-2);
  background:var(--surface);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .7fr 1fr;
  gap:18px;
}
.footer-logo{
  height:125px;
  width:auto;
  object-fit:contain;
  margin-bottom:10px;
}
.footer-title{
  font-weight:900;
  color:var(--primary);
  margin-bottom:10px;
}
.footer-link{
  display:block;
  padding:6px 0;
  color:var(--text);
  font-weight:800;
}
.footer-link:hover{ color:var(--link); }
.footer-muted{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.footer-bottom{ margin-top:18px; }
.footer-line{
  height:1px;
  background:var(--border);
  margin-bottom:10px;
}
.footer-copy{
  color:var(--muted);
  font-weight:800;
  font-size:12px;
}
.footer-dev{
  color:var(--link);
  font-weight:900;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

/* ========================================= */
/* RESPONSIVO GENERAL */
/* ========================================= */
@media (max-width: 900px){
  .section{ padding:52px 0; }
  .section-title{ font-size:28px; }
  .footer-grid{ grid-template-columns:1fr; }

  .footer-logo{
    height:85px;
    }
}


/* ========================================= */
/* BOTON FLOTANTE WHATSAPP */
/* ========================================= */
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;

  display:flex;
  align-items:center;
  gap:10px;

  padding:12px 14px;
  border-radius:999px;

  background:#25D366;
  color:#ffffff;

  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 14px 30px rgba(0,0,0,.22);

  font-weight:900;
  letter-spacing:.2px;

  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.whatsapp-float i{
  font-size:20px;
  line-height:0;
}
.whatsapp-float:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 36px rgba(0,0,0,.26);
  filter:brightness(1.02);
}
.whatsapp-float:active{
  transform:translateY(0px);
}

@media (max-width: 900px){
  .whatsapp-float{
    right:14px;
    bottom:14px;
    padding:12px 12px;
  }
  .whatsapp-float span{
    display:none;
  }
}
