/* ============================================================
   Dynamo Empresarial — hoja de estilos principal
   ============================================================ */

:root{
  --navy-900:#0B2444;
  --navy-800:#123A66;
  --navy-700:#1B4A80;
  --orange-500:#FF7A2E;
  --orange-600:#E8631A;
  --bg-light:#F5F7FA;
  --bg-white:#FFFFFF;
  --text-main:#1D2733;
  --text-muted:#5B6B7C;
  --border-soft:#E4E9EF;
  --radius-lg:18px;
  --radius-md:12px;
  --shadow-soft:0 10px 30px rgba(11,36,68,0.08);
  --shadow-card:0 6px 18px rgba(11,36,68,0.06);
  --max-width:1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter','Segoe UI',Arial,sans-serif;
  color:var(--text-main);
  background:var(--bg-white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Poppins','Inter',Arial,sans-serif;
  color:var(--navy-900);
  line-height:1.2;
  margin:0 0 .6em;
}
p{ margin:0 0 1em; color:var(--text-muted); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
.container{
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 24px;
}
.section{ padding:88px 0; }
.section--tight{ padding:56px 0; }
.section--alt{ background:var(--bg-light); }
.section--navy{ background:linear-gradient(135deg,var(--navy-900),var(--navy-800)); color:#fff; }
.section--navy h1,.section--navy h2,.section--navy h3{ color:#fff; }
.section--navy p{ color:rgba(255,255,255,0.78); }

.eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--orange-500);
  margin-bottom:14px;
}
.section-head{ max-width:680px; margin:0 auto 48px; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,38px); }
.section-head p{ font-size:17px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--orange-500); color:#fff; box-shadow:0 8px 20px rgba(255,122,46,0.35); }
.btn-primary:hover{ background:var(--orange-600); }
.btn-outline{ background:transparent; border-color:rgba(255,255,255,0.5); color:#fff; }
.btn-outline:hover{ background:rgba(255,255,255,0.12); }
.btn-outline-navy{ background:transparent; border-color:var(--navy-900); color:var(--navy-900); }
.btn-outline-navy:hover{ background:var(--navy-900); color:#fff; }
.btn-block{ width:100%; justify-content:center; }

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border-soft);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:44px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:6px; }
.nav-links a{
  padding:10px 16px; border-radius:999px; font-weight:600; font-size:14.5px; color:var(--text-main);
  transition:background .15s ease, color .15s ease;
}
.nav-links a:hover, .nav-links a.active{ background:var(--bg-light); color:var(--navy-900); }
.nav-links a.active{ color:var(--orange-600); background:#FFF1E7; }
.nav-cta{ margin-left:8px; }
.nav-toggle{
  display:none; background:none; border:0; cursor:pointer; padding:8px;
}
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--navy-900); margin:5px 0; border-radius:2px; }

/* Hero */
.hero{ padding:110px 0 90px; position:relative; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center; }
.hero h1{ font-size:clamp(34px,4.6vw,54px); }
.hero p.lead{ font-size:18px; color:rgba(255,255,255,0.82); max-width:520px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }
.hero-stats{ display:flex; gap:36px; margin-top:48px; flex-wrap:wrap; }
.hero-stats div strong{ display:block; font-family:'Poppins',sans-serif; font-size:30px; color:#fff; }
.hero-stats div span{ font-size:13px; color:rgba(255,255,255,0.65); letter-spacing:.5px; }
.hero-art{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:var(--radius-lg);
  padding:28px;
  backdrop-filter:blur(6px);
}
.hero-art .bolt-badge{
  width:64px; height:64px; border-radius:18px;
  background:var(--orange-500);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  box-shadow:0 10px 24px rgba(255,122,46,0.4);
}
.hero-art .bolt-badge svg{ width:30px; height:30px; }
.hero-art ul li{ display:flex; gap:10px; padding:10px 0; border-top:1px solid rgba(255,255,255,0.1); color:rgba(255,255,255,0.85); font-size:15px; }
.hero-art ul li:first-child{ border-top:0; }
.hero-art ul li .dot{ color:var(--orange-500); font-weight:800; }

/* Logo strip */
.strip{ padding:26px 0; border-bottom:1px solid var(--border-soft); border-top:1px solid var(--border-soft); }
.strip p{ text-align:center; text-transform:uppercase; letter-spacing:2px; font-size:12.5px; color:var(--text-muted); margin:0; }

/* Cards / grids */
.grid{ display:grid; gap:26px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.card{
  background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-md);
  padding:30px; box-shadow:var(--shadow-card); transition:transform .18s ease, box-shadow .18s ease;
  height:100%;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); }
.card .icon-badge{
  width:52px; height:52px; border-radius:14px; background:#FFF1E7; color:var(--orange-600);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.card .icon-badge svg{ width:26px; height:26px; }
.card h3{ font-size:19px; margin-bottom:10px; }
.card p{ font-size:15px; margin-bottom:14px; }
.card a.card-link{ font-weight:700; font-size:14px; color:var(--navy-900); display:inline-flex; align-items:center; gap:6px; }
.card a.card-link:hover{ color:var(--orange-600); }

/* Process steps */
.steps{ counter-reset:step; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.step{ position:relative; padding-top:46px; }
.step::before{
  counter-increment:step; content:counter(step,decimal-leading-zero);
  font-family:'Poppins',sans-serif; font-weight:800; font-size:15px; color:#fff;
  background:var(--navy-900); width:38px; height:38px; border-radius:10px;
  display:flex; align-items:center; justify-content:center; position:absolute; top:0; left:0;
}
.step h4{ font-size:16.5px; margin-bottom:8px; }
.step p{ font-size:14.5px; }

/* Two column feature */
.feature-split{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.list li{ display:flex; gap:12px; padding:10px 0; font-size:15.5px; color:var(--text-main); }
.list li svg{ flex:none; width:20px; height:20px; color:var(--orange-500); margin-top:2px; }
.panel .list li{ color:rgba(255,255,255,0.88); border-top:1px solid rgba(255,255,255,0.12); }
.panel .list li:first-child{ border-top:0; }

/* Panel / image placeholder */
.panel{
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg,var(--navy-800),var(--navy-900));
  color:#fff; padding:40px; box-shadow:var(--shadow-soft);
}

/* Timeline (Nosotros) */
.timeline{ border-left:2px solid var(--border-soft); padding-left:28px; display:grid; gap:30px; }
.timeline .t-item{ position:relative; }
.timeline .t-item::before{
  content:''; position:absolute; left:-34px; top:4px; width:12px; height:12px; border-radius:50%;
  background:var(--orange-500); border:3px solid #fff; box-shadow:0 0 0 2px var(--orange-500);
}

/* CTA band */
.cta-band{
  border-radius:var(--radius-lg);
  background:linear-gradient(120deg,var(--navy-900),var(--navy-800));
  padding:52px; text-align:center; color:#fff;
}
.cta-band h2{ color:#fff; }
.cta-band p{ color:rgba(255,255,255,0.78); max-width:560px; margin:0 auto 26px; }

/* Contact */
.contact-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:48px; }
.contact-info-card{
  background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-md);
  padding:26px; display:flex; gap:16px; align-items:flex-start; margin-bottom:16px; box-shadow:var(--shadow-card);
}
.contact-info-card .icon-badge{ margin-bottom:0; flex:none; }
.contact-info-card h4{ font-size:15.5px; margin-bottom:4px; }
.contact-info-card p{ font-size:14.5px; margin-bottom:0; }
.placeholder{ color:var(--orange-600); font-weight:600; }

.form-card{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg); padding:34px; box-shadow:var(--shadow-soft); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13.5px; font-weight:700; margin-bottom:7px; color:var(--navy-900); }
.field input, .field select, .field textarea{
  width:100%; padding:13px 14px; border-radius:10px; border:1.5px solid var(--border-soft);
  font-family:inherit; font-size:14.5px; background:var(--bg-light); color:var(--text-main);
  transition:border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--orange-500); background:#fff;
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:12.5px; color:var(--text-muted); margin-top:10px; }

.map-embed{ border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--border-soft); height:220px; background:var(--bg-light); display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:14px; margin-top:18px; }

/* Footer */
.site-footer{ background:var(--navy-900); color:rgba(255,255,255,0.75); padding-top:64px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:36px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-grid h4{ color:#fff; font-size:14.5px; letter-spacing:1px; text-transform:uppercase; margin-bottom:16px; }
.footer-grid ul li{ padding:6px 0; font-size:14.5px; }
.footer-grid ul li a:hover{ color:var(--orange-500); }
.footer-brand p{ color:rgba(255,255,255,0.6); font-size:14.5px; max-width:280px; }
.social-row{ display:flex; gap:10px; margin-top:16px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center; transition:background .15s ease;
}
.social-row a:hover{ background:var(--orange-500); }
.social-row a svg{ width:17px; height:17px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:13px; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:rgba(255,255,255,0.6); margin-left:18px; }
.footer-bottom a:hover{ color:#fff; }

/* Utilities */
.tag{ display:inline-block; padding:5px 12px; border-radius:999px; background:#FFF1E7; color:var(--orange-600); font-size:12.5px; font-weight:700; letter-spacing:.5px; }
.mb-0{ margin-bottom:0 !important; }
.text-center{ text-align:center; }

/* Responsive */
@media (max-width:980px){
  .hero-grid, .feature-split, .contact-grid{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .steps{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:760px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0; background:#fff; flex-direction:column;
    align-items:stretch; padding:14px; border-bottom:1px solid var(--border-soft);
    display:none; gap:4px; box-shadow:var(--shadow-soft);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:12px 14px; }
  .nav-toggle{ display:block; }
  .nav-cta{ margin-left:0; margin-top:6px; }
  .grid-3, .grid-2{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .section{ padding:64px 0; }
  .cta-band{ padding:34px 22px; }
}
