:root{
  --bg:#0c0f12;
  --panel:#0f131a;
  --panel2:#0b0e12;
  --text:#f3f6ff;
  --muted:rgba(243,246,255,.72);
  --line:rgba(254,218,22,.14);
  --red:#fa2814;
  --yellow:#feda16;
  --blue:#061e9a;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:22px;
  --glow-red:0 0 0 1px rgba(250,40,20,.35), 0 0 32px rgba(250,40,20,.28);
  --glow-yellow:0 0 0 1px rgba(254,218,22,.25), 0 0 34px rgba(254,218,22,.18);
  --container:1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 900px at 14% 10%, rgba(6,30,154,.28), transparent 60%),
    radial-gradient(900px 700px at 82% 22%, rgba(250,40,20,.24), transparent 62%),
    radial-gradient(900px 700px at 70% 90%, rgba(254,218,22,.14), transparent 60%),
    linear-gradient(180deg, #07080b 0%, var(--bg) 40%, #07080b 100%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  background:var(--yellow);
  color:#0b0e12;
  padding:10px 12px;
  border-radius:10px;
  font-weight:700;
  z-index:9999;
}
.skip-link:focus{left:12px;top:12px}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,.10);
  color:#0c0f12;
  overflow:visible;
}
.site-header.is-scrolled{
  background:#ffffff;
  border-bottom-color:rgba(0,0,0,.12);
  box-shadow:0 10px 34px rgba(0,0,0,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand-logo{
  width:92px;
  height:92px;
  background:transparent;
  border-radius:0;
  box-shadow:none;
  filter:none;
  position:static;
  margin:0;
}
.brand-text{display:flex;flex-direction:column;line-height:1.28}
.brand-name{font-weight:800;font-size:14px;letter-spacing:.2px;color:#0c0f12}
.brand-legal{margin-top:3px;font-size:12px;color:rgba(12,15,18,.78)}

.nav{display:flex;align-items:center;gap:12px}
.nav-toggle{
  display:none;
  appearance:none;
  background:transparent;
  border:1px solid rgba(0,0,0,.16);
  color:#0c0f12;
  border-radius:14px;
  padding:10px 12px;
}
.nav-toggle-bars{
  display:block;
  width:22px;
  height:14px;
  position:relative;
}
.nav-toggle-bars::before,.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:rgba(12,15,18,.85);
  border-radius:2px;
}
.nav-toggle-bars::before{top:1px;box-shadow:0 5px 0 rgba(12,15,18,.85), 0 10px 0 rgba(12,15,18,.85)}
.nav-toggle-bars::after{display:none}
.nav-links{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-links a{
  padding:10px 10px;
  border-radius:12px;
  color:#0c0f12;
  font-weight:750;
  font-size:13px;
}
.nav-links a:hover{
  background:transparent;
  color:#fd461a;
}
.nav-links a:focus-visible{
  outline:2px solid rgba(253,70,26,.55);
  outline-offset:2px;
}
.nav-links a.is-active{
  color:#fd461a;
}
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:750;
  border:0;
  box-shadow:none;
}
.nav-cta-wa{
  background:transparent;
  color:#0c0f12 !important;
}
.nav-cta-wa:hover{
  background:transparent;
  color:#fd461a !important;
}
.wa-ico{
  width:18px;
  height:18px;
  display:block;
}
.wa-txt{line-height:1}

.nav-social{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:6px;
}
.social-btn{
  width:34px;
  height:34px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  box-shadow:0 10px 26px rgba(0,0,0,.12);
  transition:transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.social-btn svg{width:18px;height:18px;display:block}
.social-btn:hover{
  transform:translateY(-1px);
  filter:saturate(1.1);
}
.social-btn:focus-visible{
  outline:2px solid rgba(253,70,26,.65);
  outline-offset:2px;
}
.social-fb{background:#1877f2}
.social-ig{
  background:radial-gradient(circle at 30% 100%, #feda75 0%, #fa7e1e 30%, #d62976 55%, #962fbf 75%, #4f5bd5 100%);
}
.social-tt{
  background:#000000;
  box-shadow:0 10px 26px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.14);
}
.social-tt svg{
  filter:drop-shadow(1px 0 0 rgba(37,244,238,.85)) drop-shadow(-1px 0 0 rgba(254,44,85,.85));
}

.hero{
  position:relative;
  padding:60px 0 44px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:34px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(243,246,255,.84);
  font-weight:650;
  font-size:13px;
}
.hero h1{
  margin:16px 0 10px;
  font-size:48px;
  line-height:1.03;
  letter-spacing:-.7px;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
  max-width:56ch;
}
.hero-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}
.btn{
  appearance:none;
  border:0;
  cursor:pointer;
  border-radius:16px;
  padding:12px 14px;
  font-weight:800;
  letter-spacing:.2px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:linear-gradient(90deg, rgba(250,40,20,.98), rgba(254,218,22,.95));
  color:#0b0e12;
  box-shadow:var(--shadow), var(--glow-red);
}
.btn-primary:hover{box-shadow:var(--shadow), 0 0 0 1px rgba(250,40,20,.4), 0 0 44px rgba(250,40,20,.3)}
.btn-ghost{
  background:rgba(255,255,255,.04);
  color:rgba(243,246,255,.92);
  border:1px solid rgba(255,255,255,.12);
}
.btn-ghost:hover{background:rgba(255,255,255,.06)}
.btn-lg{padding:14px 16px;border-radius:18px;font-size:15px}

.trust-row{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.trust-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(243,246,255,.86);
  font-weight:700;
  font-size:13px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  box-shadow:0 0 0 2px rgba(0,0,0,.3);
}
.dot-red{background:var(--red);box-shadow:0 0 0 2px rgba(0,0,0,.35), 0 0 16px rgba(250,40,20,.55)}
.dot-yellow{background:var(--yellow);box-shadow:0 0 0 2px rgba(0,0,0,.35), 0 0 16px rgba(254,218,22,.35)}
.dot-blue{background:var(--blue);box-shadow:0 0 0 2px rgba(0,0,0,.35), 0 0 16px rgba(6,30,154,.35)}

.hero-media-frame{
  position:relative;
  border-radius:var(--radius2);
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}
.hero-media-img{width:100%;height:auto;aspect-ratio: 10/9;object-fit:cover;filter:saturate(1.06) contrast(1.05)}
.hero-media-caption{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(12,15,18,.55);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(10px);
}
.caption-title{font-weight:900}
.caption-sub{margin-top:3px;color:var(--muted);font-size:13px}
.hero-glow{
  position:absolute;
  inset:auto -20% -60% -20%;
  height:520px;
  background:radial-gradient(closest-side at 50% 50%, rgba(250,40,20,.22), transparent 60%),
    radial-gradient(closest-side at 30% 40%, rgba(254,218,22,.16), transparent 62%),
    radial-gradient(closest-side at 70% 30%, rgba(6,30,154,.14), transparent 62%);
  pointer-events:none;
  filter:blur(10px);
}

.section{padding:54px 0}
.section-alt{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}
.section-head h2{
  margin:0;
  font-size:30px;
  letter-spacing:-.4px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:62ch;
  line-height:1.55;
}
#servicios .section-head p,
#porque .section-head p{
  text-align:right;
  margin-left:auto;
}

.grid{display:grid;gap:14px}
.cards{grid-template-columns:repeat(3, 1fr)}
.projects{grid-template-columns:repeat(4, 1fr)}

.card{
  border-radius:var(--radius);
  background:rgba(15,19,26,.62);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 10px 40px rgba(0,0,0,.25);
  padding:16px 16px;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:radial-gradient(700px 300px at 20% 12%, rgba(254,218,22,.12), transparent 55%),
    radial-gradient(700px 320px at 90% 20%, rgba(250,40,20,.12), transparent 55%);
  opacity:.9;
  pointer-events:none;
}
.card > *{position:relative}
.card h3{margin:10px 0 8px;font-size:16px;letter-spacing:-.15px}
.card p{margin:0;color:var(--muted);line-height:1.55;font-size:14px}

.service-card{
  min-height:178px;
  padding:16px 16px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.10);
}
.service-card::before{
  display:none;
}
.service-media{
  position:relative;
  margin:-16px -16px 12px;
  border-radius:16px 16px 10px 10px;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.service-media::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:52%;
  background:linear-gradient(180deg, transparent, rgba(12,15,18,.55));
  pointer-events:none;
}
.service-media img{
  width:100%;
  aspect-ratio: 16 / 10;
  object-fit:cover;
  display:block;
}
.card-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--glow-yellow);
}
.service-card .card-icon{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  backdrop-filter:blur(3px);
  background:rgba(255,255,255,.84);
  border-color:rgba(0,0,0,.14);
}
.service-card h3{
  color:#0c0f12;
}
.service-card p{
  color:#334155;
}
.service-card .link-btn{
  color:#fe8a35;
  background:rgba(254,138,53,.10);
  border:1px solid rgba(254,138,53,.35);
  padding:10px 12px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.service-card .i::before,
.service-card .i::after{
  border-color:rgba(12,15,18,.78);
}
.i{
  display:block;
  width:20px;
  height:20px;
  position:relative;
}
.i::before,.i::after{
  content:"";
  position:absolute;
  inset:0;
  border:2px solid rgba(243,246,255,.8);
  border-radius:6px;
  opacity:.9;
}
.i-letters::before{border-radius:4px 10px 4px 10px;transform:skewX(-10deg)}
.i-sign::before{border-radius:6px}
.i-screen::before{border-radius:6px}
.i-wrench::before{border-radius:6px}
.i-move::before{border-radius:6px}
.i-power::before{border-radius:6px}
.i-height::before{border-radius:6px}
.i-screen::after{
  inset:6px;
  border-color:rgba(254,218,22,.85);
  box-shadow:0 0 18px rgba(254,218,22,.22);
}
.i-wrench::after{
  inset:6px;
  border-color:rgba(250,40,20,.9);
  box-shadow:0 0 18px rgba(250,40,20,.18);
}
.i-power::after{
  inset:6px;
  border-color:rgba(6,30,154,.9);
  box-shadow:0 0 18px rgba(6,30,154,.18);
}

.link-btn{
  margin-top:12px;
  background:transparent;
  border:0;
  padding:0;
  color:rgba(254,218,22,.95);
  font-weight:850;
  cursor:pointer;
  text-align:left;
}
.link-btn:hover{text-decoration:underline}

.why-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.why-panel{
  border-radius:var(--radius2);
  padding:18px 18px;
  background:linear-gradient(180deg, rgba(250,40,20,.12), rgba(15,19,26,.55));
  border:1px solid rgba(250,40,20,.22);
  box-shadow:var(--shadow);
}
.why-title{font-weight:950;font-size:18px}
.why-desc{margin-top:8px;color:var(--muted);line-height:1.55}
.why-metrics{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}
.metric{
  border-radius:16px;
  padding:10px 12px;
  background:rgba(12,15,18,.50);
  border:1px solid rgba(255,255,255,.10);
}
.metric-n{font-weight:950;letter-spacing:.6px;color:rgba(254,218,22,.95)}
.metric-l{margin-top:3px;color:var(--muted);font-size:12px}

.why-list{
  display:grid;
  gap:10px;
  padding:14px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(15,19,26,.45);
}
.why-item{display:flex;gap:10px;align-items:flex-start}
.check{
  width:18px;
  height:18px;
  border-radius:6px;
  background:rgba(254,218,22,.14);
  border:1px solid rgba(254,218,22,.35);
  box-shadow:0 0 22px rgba(254,218,22,.12);
  position:relative;
  margin-top:2px;
  flex:0 0 18px;
}
.check::after{
  content:"";
  position:absolute;
  left:5px;
  top:3px;
  width:5px;
  height:9px;
  border-right:2px solid rgba(254,218,22,.95);
  border-bottom:2px solid rgba(254,218,22,.95);
  transform:rotate(40deg);
}

.timeline{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}
.timeline-item{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap:12px;
  align-items:start;
}
.timeline-node{
  width:18px;
  height:18px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(254,218,22,.95), rgba(250,40,20,.95));
  box-shadow:0 0 0 3px rgba(0,0,0,.25), 0 0 34px rgba(250,40,20,.25);
  margin-top:12px;
}
.timeline-card{
  border-radius:var(--radius2);
  background:rgba(15,19,26,.45);
  border:1px solid rgba(255,255,255,.10);
  padding:14px 16px;
}
.timeline-title{font-weight:950}
.timeline-desc{margin-top:6px;color:var(--muted);line-height:1.55}

.project-card h3{margin-top:12px}
.project-media{
  height:140px;
  border-radius:16px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.12);
}
.project-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.05);
}
.project-tag{
  position:absolute;
  left:12px;
  top:12px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(12,15,18,.55);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:12px;
}
.project-sheen{
  position:absolute;
  inset:-40% -10% auto -60%;
  height:220%;
  transform:rotate(18deg);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  opacity:.55;
}

.brand-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.brand-badge{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(243,246,255,.86);
  font-weight:850;
  letter-spacing:.2px;
}
.brand-logo-badge{
  height:54px;
  padding:10px 14px;
  border-radius:16px;
  background:#ffffff !important;
  border:1px solid rgba(0,0,0,.10);
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-logo-badge img{
  height:30px;
  width:auto;
  max-width:140px;
  object-fit:contain;
  display:block;
  background:#ffffff;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.client-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.client-card{
  border-radius:var(--radius2);
  padding:16px 16px;
  background:rgba(15,19,26,.45);
  border:1px solid rgba(255,255,255,.10);
}
.client-title{font-weight:950;color:#fed412}
.client-desc{margin-top:8px;color:var(--muted);line-height:1.55}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}
.contact-card{
  border-radius:var(--radius2);
  padding:18px 18px;
  background:rgba(15,19,26,.55);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 12px 42px rgba(0,0,0,.26);
}
.contact-card h2{margin:0 0 6px;font-size:26px;letter-spacing:-.35px}
.lead-sm{margin:0;color:var(--muted);line-height:1.55}
.contact-lines{margin-top:14px;display:grid;gap:10px}
.contact-line{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:12px;
  align-items:baseline;
}
.contact-k{color:rgba(243,246,255,.72);font-weight:850;font-size:12px;letter-spacing:.25px;text-transform:uppercase}
.contact-v{color:rgba(243,246,255,.90);font-weight:700}
.contact-actions{margin-top:16px;display:flex;gap:10px;flex-wrap:wrap}
.contact-actions .btn-primary{
  background:#14940f;
  color:#ffffff;
  box-shadow:0 14px 44px rgba(20,148,15,.28);
}
.contact-actions .btn-primary:hover{
  background:#18a812;
}
.contact-card-alt{
  background:linear-gradient(180deg, rgba(254,218,22,.08), rgba(15,19,26,.48));
  border-color:rgba(254,218,22,.18);
}
.promise + .promise{margin-top:14px}
.promise-title{font-weight:950;color:#fed412}
.promise-desc{margin-top:6px;color:var(--muted);line-height:1.55}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.split-card{
  border-radius:var(--radius2);
  padding:18px;
  background:rgba(15,19,26,.50);
  border:1px solid rgba(255,255,255,.10);
}
.split-title{font-weight:950;font-size:16px}
.bullets{margin:12px 0 0;padding-left:18px;color:rgba(243,246,255,.88)}
.bullets li{margin:10px 0;color:var(--muted);line-height:1.55}

.faq{display:grid;gap:10px}
.faq-item{
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(15,19,26,.45);
}
.faq-q{
  width:100%;
  text-align:left;
  padding:14px 16px;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  background:transparent;
  border:0;
  color:rgba(243,246,255,.92);
  font-weight:900;
  cursor:pointer;
}
.faq-ico{
  width:18px;
  height:18px;
  border-radius:6px;
  border:1px solid rgba(254,218,22,.35);
  background:rgba(254,218,22,.12);
  box-shadow:0 0 24px rgba(254,218,22,.14);
  position:relative;
  flex:0 0 18px;
}
.faq-ico::before,.faq-ico::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:10px;
  height:2px;
  background:rgba(254,218,22,.95);
  transform:translate(-50%,-50%);
  border-radius:2px;
}
.faq-ico::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq-item.is-open .faq-ico::after{opacity:0}
.faq-a{padding:0 16px 14px}
.faq-a p{margin:0;color:var(--muted);line-height:1.6}

.final-cta{
  padding:52px 0;
  background:
    radial-gradient(900px 520px at 20% 30%, rgba(250,40,20,.20), transparent 55%),
    radial-gradient(860px 520px at 78% 40%, rgba(254,218,22,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);
}
.final-cta-inner{
  border-radius:28px;
  padding:22px 22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(12,15,18,.55);
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.final-cta h2{margin:0 0 8px;font-size:28px;letter-spacing:-.4px}
.final-cta p{margin:0;color:var(--muted);line-height:1.55;max-width:70ch}
.final-cta-actions{display:flex;gap:10px;flex-wrap:wrap}

.site-footer{
  padding:42px 0 24px;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.22);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:16px;
  align-items:start;
}
.footer-brand{display:flex;gap:12px;align-items:center}
.footer-brand img{
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.footer-title{font-weight:950}
.footer-sub{margin-top:4px;color:var(--muted);font-size:13px}
.footer-col{display:grid;gap:8px}
.footer-h{font-weight:950;font-size:13px}
.footer-col a{color:rgba(243,246,255,.85);font-size:13px}
.footer-col a:hover{text-decoration:underline}
.footer-muted{color:var(--muted);line-height:1.45;font-size:13px}
.footer-bottom{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  color:rgba(243,246,255,.65);
  font-size:13px;
  flex-wrap:wrap;
}
.to-top{color:rgba(254,218,22,.88);font-weight:850}
.to-top:hover{text-decoration:underline}

.float-wa-wrap{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:90;
  display:flex;
  align-items:center;
  gap:10px;
}
.float-wa-assist{
  display:block;
  background:transparent;
  border:0;
  padding:0;
  box-shadow:none;
}
.float-avatar{
  width:72px;
  height:auto;
  border-radius:0;
  object-fit:contain;
  display:block;
  position:relative;
  top:-6px;
  filter:drop-shadow(0 14px 22px rgba(0,0,0,.45));
}
.float-wa{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:#2aaa1d;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:var(--shadow), 0 0 46px rgba(42,170,29,.22);
  backdrop-filter:blur(10px);
}
.float-wa:hover{background:#30bb21}
.float-wa-ico{
  width:18px;
  height:18px;
  display:block;
  color:#ffffff;
}
.float-wa-t{font-weight:950;color:#ffffff}

.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:100;
}
.modal.is-open{display:flex}
.modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(6px);
}
.modal-card{
  position:relative;
  width:min(720px, 100%);
  border-radius:26px;
  background:rgba(15,19,26,.70);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.modal-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:18px 18px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.modal-title{font-weight:950;font-size:18px}
.modal-sub{margin-top:6px;color:var(--muted);line-height:1.5}
.modal-x{
  appearance:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(243,246,255,.90);
  border-radius:14px;
  width:44px;
  height:44px;
  cursor:pointer;
  font-size:24px;
  line-height:1;
}
.modal-x:hover{background:rgba(255,255,255,.08)}

.form{padding:14px 18px 18px}
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{display:grid;gap:7px}
.field-full{grid-column:1 / -1}
.field-l{font-weight:900;font-size:12px;color:rgba(243,246,255,.80);letter-spacing:.25px;text-transform:uppercase}
.field-i{
  width:100%;
  border-radius:16px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(12,15,18,.55);
  color:rgba(243,246,255,.92);
  outline:none;
}
.field-i:focus{
  border-color:rgba(254,218,22,.40);
  box-shadow:0 0 0 3px rgba(254,218,22,.13);
}
.form-actions{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}
.form-note{margin-top:10px;color:rgba(243,246,255,.65);font-size:13px;line-height:1.45}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr;gap:18px}
  .hero h1{font-size:40px}
  .cards{grid-template-columns:repeat(2, 1fr)}
  .projects{grid-template-columns:repeat(2, 1fr)}
  .client-grid{grid-template-columns:repeat(2, 1fr)}
  .why-grid{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr 1fr}
}

@media (max-width: 720px){
  .hero{padding-top:34px}
  .hero h1{font-size:34px}
  .section-head{flex-direction:column;align-items:flex-start}
  #servicios .section-head p,
  #porque .section-head p{
    text-align:left;
    margin-left:0;
  }
  .cards{grid-template-columns:1fr}
  .projects{grid-template-columns:1fr}
  .client-grid{grid-template-columns:1fr}
  .header-inner{gap:10px}
  .brand{min-width:auto}
  .lead{font-size:16px}
  .hero-actions .btn{flex:1 1 220px}
  .trust-pill{font-size:12px}
  .project-media{height:180px}
  .contact-line{grid-template-columns: 1fr}
  .contact-k{margin-bottom:2px}
  .footer-grid{grid-template-columns: 1fr}
  .float-wa-wrap{
    right:calc(12px + env(safe-area-inset-right));
    bottom:calc(12px + env(safe-area-inset-bottom));
    flex-direction:column-reverse;
    align-items:flex-end;
    gap:8px;
  }
  .float-avatar{width:62px;top:-5px}
  .nav-toggle{display:inline-flex}
  .nav-social{display:none}
  .nav-links{
    position:fixed;
    top:70px;
    right:14px;
    left:14px;
    background:#ffffff;
    border:1px solid rgba(0,0,0,.12);
    border-radius:20px;
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    box-shadow:var(--shadow);
  }
  .nav-links.is-open{display:flex}
  .nav-links a{padding:12px 12px}
}

@media (max-width: 480px){
  .container{width:calc(100% - 24px)}
  .brand-logo{width:72px;height:72px}
  .hero{padding:30px 0 26px}
  .hero h1{font-size:30px}
  .hero-media-caption{left:12px;right:12px;bottom:12px}
  .caption-title{font-size:14px}
  .caption-sub{font-size:12px}
  .service-card .link-btn{width:100%}
  .contact-actions .btn{flex:1 1 220px}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn{transition:none}
}
