/* ===== TOKLIP BASE ===== */
:root{
  --blue:#0D1B2A;
  --orange:#FF6600;
  --light:#F4F6F8;
  --text:#1F2937;
  --muted:#6B7280;
  --radius:14px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

a{color:var(--blue);text-decoration:none}
img{max-width:100%;display:block}

.container{
  max-width:1200px;
  margin:auto;
  padding:24px;
}

/* ===== HEADER ===== */
.header{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
  position:sticky;
  top:0;
  z-index:50;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:var(--blue);
}
.logo{
  width:72px;
  height:72px;
}
.navlinks a{
  margin:0 10px;
  font-weight:500;
}
.nav-cta{
  display:flex;
  gap:10px;
}
.menu-btn{display:none}

/* ===== BUTTONS ===== */
.btn{
  padding:10px 16px;
  border-radius:999px;
  font-weight:600;
  border:1px solid transparent;
  display:inline-block;
}
.btn-primary{
  background:var(--orange);
  color:#fff;
}
.btn-outline{
  border-color:var(--orange);
  color:var(--orange);
  background:#fff;
}

/* ===== HERO ===== */
.hero{
  background:linear-gradient(180deg,#ffffff 0%,var(--light) 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.badge{
  display:inline-block;
  background:#fff;
  border:1px solid #e5e7eb;
  padding:6px 12px;
  border-radius:999px;
  margin-bottom:12px;
  font-size:14px;
}
.lead{font-size:18px;color:var(--muted)}
.hero-actions{margin:18px 0;display:flex;flex-wrap:wrap;gap:10px}

/* ===== KPIs ===== */
.kpis{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:18px;
}
.kpi{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:var(--radius);
  padding:14px;
  text-align:center;
}
.kpi strong{font-size:20px;color:var(--blue)}
.kpi span{display:block;font-size:13px;color:var(--muted)}

/* ===== SECTIONS ===== */
.section{padding:48px 0}
.section.alt{background:var(--light)}
.muted{color:var(--muted)}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:18px;
}
.card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:var(--radius);
  padding:20px;
}
.icon{font-size:28px}
.cta-row{margin-top:20px;display:flex;gap:12px;flex-wrap:wrap}

/* ===== NOTICE ===== */
.notice{
  margin-top:18px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#9a3412;
  padding:14px;
  border-radius:var(--radius);
}

/* ===== FOOTER ===== */
.footer{
  background:var(--blue);
  color:#fff;
}
.footer a{color:#fff}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

/* ===== STICKY CTA ===== */
.sticky-cta{
  position:fixed;
  bottom:14px;
  right:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.fab{
  background:var(--blue);
  color:#fff;
  padding:12px 14px;
  border-radius:999px;
  font-weight:600;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.fab.orange{background:var(--orange)}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .kpis{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:1fr}
  .navlinks,.nav-cta{display:none}
}
/* =========================
   TOKLIP — AJUSTES PRO (A)
   ========================= */

/* 1) Header más compacto + logo más protagonista */
.header .nav{min-height:64px}
.logo{width:44px;height:44px}
.navlinks a{font-size:15px}

/* Opcional: oculta el texto "Toklip" al lado del logo (deja solo el logo).
   Si quieres mantenerlo, borra estas 2 líneas. */
.brand-name{display:none}

/* 2) Hero más premium (marco suave + sombra elegante) */
.hero-card{
  padding:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.hero-card img{
  border-radius:16px;
}

/* 3) Botón WhatsApp directo con mejor presencia */
.hero-actions .btn:not(.btn-primary):not(.btn-outline){
  background:#fff;
  border:1px solid #e5e7eb;
  color:var(--blue);
}
.hero-actions .btn:not(.btn-primary):not(.btn-outline):hover{
  border-color:var(--orange);
}

/* 4) Sticky CTA más discreto y limpio */
.sticky-cta{bottom:18px; right:18px}
.fab{padding:10px 12px; opacity:.95}
.fab:hover{opacity:1}

/* ===== HEADER FINAL TOKLIP ===== */
.header{
  padding:10px 0;
}

.header .brand{
  display:flex;
  align-items:center;
}

/* ===== HEADER FINAL TOKLIP (más grande) ===== */
.header{
  padding:12px 0;
}

.header .brand{
  display:flex;
  align-items:center;
}

.header .brand img{
  height:80px !important;   /* <-- subimos de 56 a 80 */
  width:auto !important;
  max-height:none !important;
}

.header .nav{
  min-height:96px !important; /* <-- más espacio para el logo */
}
/* ===== Mejoras MOBILE (Toklip) ===== */
@media (max-width: 768px){

  /* Header más compacto en móvil */
  .header{ padding:8px 0; }
  .header .nav{ min-height:68px !important; }
  .header .brand img{ height:58px !important; }

  /* Botones del hero en columna, más cómodos */
  .hero-actions{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:stretch;
  }
  .hero-actions .btn{
    width:100%;
    text-align:center;
  }

  /* Sticky CTA más pequeño para que NO tape */
  .sticky-cta{
    right:12px;
    bottom:12px;
    gap:10px;
  }
  .fab{
    padding:8px 10px;
    font-size:13px;
    border-radius:999px;
  }
@media (max-width: 768px){
  .actions .btn{
    width:100%;
    margin-bottom:10px;
  }
}
.wa-row{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid #e9edf4;
  border-radius:14px;
  padding:10px 12px;
  background:#fff;
}
.wa-prefix{
  font-weight:800;
  color:var(--blue);
  padding:6px 10px;
  border-radius:10px;
  background:#f3f7ff;
  border:1px solid #e7efff;
  white-space:nowrap;
}
.wa-row input{
  border:none !important;
  outline:none !important;
  padding:8px 0 !important;
  width:100%;
  background:transparent !important;
}
.hint{
  display:block;
  margin-top:6px;
  color:#6b7280;
  font-size:12px;
}
/* =========================
   TOKLIP — FIX & FINAL OVERRIDES (2026-02)
   Pegar al FINAL del styles.css
   ========================= */

/* 1) HEADER — una sola versión consistente */
.header{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
  position:sticky;
  top:0;
  z-index:50;
  padding:12px 0;
}

.header .nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:96px; /* desktop */
}

.header .brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:var(--blue);
}

/* Logo grande en desktop */
.header .brand img{
  height:80px;
  width:auto;
  max-height:none;
}

/* Navegación */
.navlinks a{font-size:15px}
.nav-cta{display:flex;gap:10px}

/* 2) BOTONES — hover suave */
.btn{transition:all .15s ease}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-outline:hover{
  background:rgba(255,102,0,.06);
}

/* 3) WHATSAPP FIELD +57 (seguro y consistente) */
.wa-row{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid #e9edf4;
  border-radius:14px;
  padding:10px 12px;
  background:#fff;
}

.wa-prefix{
  font-weight:800;
  color:var(--blue);
  padding:6px 10px;
  border-radius:10px;
  background:#f3f7ff;
  border:1px solid #e7efff;
  white-space:nowrap;
}

.wa-row input{
  border:none !important;
  outline:none !important;
  padding:8px 0 !important;
  width:100%;
  background:transparent !important;
}

/* Hint consistente */
.hint{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:12px;
}

/* 4) MOBILE — cierre correcto + layout cómodo */
@media (max-width: 768px){

  .header{ padding:8px 0; }
  .header .nav{ min-height:68px; }
  .header .brand img{ height:58px; }

  /* En móvil, tus botones del formulario en columna */
  .actions{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:stretch;
  }
  .actions .btn{
    width:100%;
    text-align:center;
  }

  /* Sticky CTA más pequeño para que no tape */
  .sticky-cta{
    right:12px;
    bottom:12px;
    gap:10px;
  }
  .fab{
    padding:8px 10px;
    font-size:13px;
    border-radius:999px;
  }
}


