/* =========================================================
   Pixel Digital — hoja de estilos principal
   ========================================================= */
:root{
  --bg: #0B1320;
  --bg-soft: #101B30;
  --blue: #1E5FD9;
  --blue-soft: #3D7BFF;
  --paper: #F4F6F9;
  --orange: #FF7A45;
  --orange-deep: #E85C2B;
  --grey: #9AA5B5;
  --grey-dim: #5C6577;
  --line: rgba(154,165,181,0.18);
  --radius: 18px;
  --maxw: 1180px;
  font-size: 16px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--paper);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}

.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}

.eyebrow{
  font-family:'JetBrains Mono', monospace;
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--orange);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow .dot{
  width:6px; height:6px; background:var(--orange); display:inline-block;
  box-shadow: 6px 0 0 var(--blue-soft), 12px 0 0 var(--orange);
}

h1,h2,h3{
  font-family:'Space Grotesk', sans-serif;
  margin:0;
  line-height:1.05;
  letter-spacing:-0.01em;
}

/* ---------- pixel texture ---------- */
.pixel-field{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(154,165,181,0.35) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity:0.35;
  pointer-events:none;
}

/* ---------- header ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,19,32,0.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 32px;
  max-width:var(--maxw); margin:0 auto;
}
.brand{display:flex; align-items:center; gap:10px; font-family:'Space Grotesk'; font-weight:700; font-size:19px;}
.brand img{height:34px; width:auto;}
.navlinks{display:flex; gap:34px; align-items:center;}
.navlinks a{font-size:14.5px; color:var(--grey); font-weight:500; transition:color .2s;}
.navlinks a:hover{color:var(--paper);}
.nav-cta{
  background:var(--orange);
  color:#1A0B04;
  font-weight:700;
  font-size:14px;
  padding:11px 20px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition: transform .15s ease, background .2s ease;
}
.nav-cta:hover{background:var(--orange-deep); transform:translateY(-1px); color:#fff;}

/* ---------- hero ---------- */
.hero{
  position:relative;
  padding:84px 0 100px;
  overflow:hidden;
}
.hero-grid{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:48px;
  align-items:center;
}
.hero h1{
  font-size:clamp(36px, 4.6vw, 60px);
  font-weight:700;
  color:var(--paper);
  margin-top:22px;
}
.hero h1 em{
  font-style:normal;
  color:var(--blue-soft);
  position:relative;
}
.hero h1 .hl-orange{ color:var(--orange); }
.hero p.lead{
  font-size:18px;
  color:var(--grey);
  line-height:1.65;
  max-width:540px;
  margin-top:22px;
}
.hero-ctas{display:flex; gap:14px; margin-top:34px; flex-wrap:wrap;}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 26px;
  border-radius:12px;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  border:1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn-primary{background:var(--orange); color:#1A0B04;}
.btn-primary:hover{background:var(--orange-deep); transform:translateY(-2px); color:#fff;}
.btn-ghost{border-color:var(--line); color:var(--paper);}
.btn-ghost:hover{border-color:var(--blue-soft); background:rgba(61,123,255,0.08); transform:translateY(-2px);}

.hero-meta{
  display:flex; gap:30px; margin-top:48px; flex-wrap:wrap;
}
.hero-meta div{font-size:13.5px; color:var(--grey-dim);}
.hero-meta strong{display:block; font-family:'Space Grotesk'; font-size:22px; color:var(--paper); font-weight:600;}

.hero-photo-wrap{
  position:relative;
  display:flex;
  justify-content:center;
}
.hero-photo-card{
  position:relative;
  width:100%;
  max-width:380px;
  border-radius: 28px 28px 28px 6px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}
.hero-photo-card img{width:100%; height:auto; display:block;}
.photo-badge{
  position:absolute; bottom:18px; left:18px; right:18px;
  background:rgba(11,19,32,0.85);
  backdrop-filter:blur(6px);
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 16px;
  display:flex; align-items:center; gap:12px;
}
.photo-badge .pulse{
  width:9px; height:9px; border-radius:50%; background:var(--orange);
  box-shadow:0 0 0 0 rgba(255,122,69,0.6);
  animation: pulse 2s infinite;
  flex-shrink:0;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,122,69,0.55);}
  70%{box-shadow:0 0 0 9px rgba(255,122,69,0);}
  100%{box-shadow:0 0 0 0 rgba(255,122,69,0);}
}
.photo-badge span{font-size:13px; color:var(--grey); line-height:1.3;}
.photo-badge strong{color:var(--paper); font-weight:600;}

/* ---------- section shells ---------- */
section{position:relative; padding:96px 0;}
.section-light{background:var(--paper); color:#0B1320;}
.section-light .eyebrow{color:var(--orange-deep);}
.section-head{max-width:640px; margin-bottom:56px;}
.section-head h2{font-size:clamp(28px,3.4vw,42px); font-weight:700; margin-top:16px;}
.section-light h2{color:#0B1320;}
.section-head p{font-size:16.5px; color:var(--grey); margin-top:14px; line-height:1.6;}
.section-light .section-head p{color:#54607A;}

/* ---------- trato cercano / about ---------- */
.about{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:60px;
  align-items:center;
}
.about-visual{
  position:relative;
  background:linear-gradient(155deg, var(--bg-soft), #0B1320);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:38px;
  min-height:320px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.about-visual .quote-mark{
  font-family:'Space Grotesk'; font-size:54px; color:var(--orange); line-height:1; font-weight:700;
}
.about-visual blockquote{
  font-family:'Space Grotesk';
  font-size:21px;
  line-height:1.4;
  margin:0;
  color:var(--paper);
  font-weight:500;
}
.about-visual cite{
  display:block; margin-top:18px; font-style:normal; font-size:13.5px; color:var(--grey); font-family:'Inter';
}
.about-list{display:flex; flex-direction:column; gap:26px;}
.about-item{display:flex; gap:18px;}
.about-item .num{
  font-family:'JetBrains Mono'; font-size:13px; color:var(--orange); font-weight:600; padding-top:3px; flex-shrink:0; width:26px;
}
.about-item h3{font-size:18px; font-weight:600; margin-bottom:6px;}
.about-item p{font-size:15px; color:var(--grey-dim); line-height:1.6; margin:0;}

/* ---------- services ---------- */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
}
.service-card{
  background:#fff;
  border-radius: 4px 18px 18px 18px;
  padding:32px 28px;
  border:1px solid #E2E6ED;
  position:relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 40px -18px rgba(11,19,32,0.18);
}
.service-card .corner{
  position:absolute; top:-1px; left:-1px;
  width:18px; height:18px;
  background:var(--blue);
  border-radius:4px 0 0 0;
}
.service-icon{
  width:48px; height:48px;
  border-radius:12px;
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.service-card h3{font-size:19px; font-weight:700; color:#0B1320; margin-bottom:10px;}
.service-card p{font-size:14.5px; color:#5C6577; line-height:1.6; margin:0;}
.service-card .tag{
  display:inline-block;
  margin-top:16px;
  font-family:'JetBrains Mono';
  font-size:11px;
  letter-spacing:0.06em;
  color:var(--orange-deep);
  font-weight:600;
  text-transform:uppercase;
}

/* ---------- process ---------- */
.process-rail{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:0;
  position:relative;
}
.process-rail::before{
  content:'';
  position:absolute; top:23px; left:5%; right:5%; height:1px;
  background:repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 14px);
}
.process-step{position:relative; padding-right:20px;}
.process-step .step-dot{
  width:46px; height:46px;
  border-radius:50%;
  background:var(--bg);
  border:1px solid var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-family:'JetBrains Mono'; font-weight:600; font-size:14px; color:var(--blue-soft);
  margin-bottom:24px;
  position:relative; z-index:2;
}
.process-step h3{font-size:16.5px; font-weight:600; margin-bottom:8px; color:var(--paper);}
.process-step p{font-size:14px; color:var(--grey-dim); line-height:1.6; margin:0;}

/* ---------- plans ---------- */
.plans-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
  align-items:stretch;
}
.plan-card{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 28px;
  display:flex;
  flex-direction:column;
}
.plan-card.featured{
  border-color:var(--orange);
  background:linear-gradient(165deg, rgba(255,122,69,0.10), var(--bg-soft) 55%);
  position:relative;
}
.plan-card.featured::before{
  content:'Más elegido';
  position:absolute; top:-13px; left:28px;
  background:var(--orange); color:#1A0B04;
  font-family:'JetBrains Mono'; font-size:11px; font-weight:700;
  padding:5px 12px; border-radius:20px; letter-spacing:0.04em;
}
.plan-name{font-family:'Space Grotesk'; font-size:21px; font-weight:700; color:var(--paper);}
.plan-for{font-size:13.5px; color:var(--grey-dim); margin-top:6px; margin-bottom:24px;}
.plan-feats{list-style:none; padding:0; margin:0 0 30px; display:flex; flex-direction:column; gap:13px; flex-grow:1;}
.plan-feats li{
  font-size:14.5px; color:var(--grey); display:flex; gap:10px; line-height:1.5;
}
.plan-feats li svg{flex-shrink:0; margin-top:2px;}
.plan-cta{
  text-align:center; padding:13px; border-radius:10px;
  font-weight:700; font-size:14.5px;
  border:1px solid var(--blue-soft); color:var(--paper);
  transition:all .2s ease;
}
.plan-card.featured .plan-cta{background:var(--orange); border-color:var(--orange); color:#1A0B04;}
.plan-cta:hover{background:var(--blue-soft); color:#fff;}
.plan-card.featured .plan-cta:hover{background:var(--orange-deep); color:#fff;}
.plans-note{
  text-align:center; margin-top:36px; font-size:14px; color:var(--grey-dim);
}
.plans-note a{color:var(--orange); font-weight:600; border-bottom:1px solid currentColor;}

/* ---------- final CTA ---------- */
.cta-band{
  background: var(--blue);
  border-radius: 24px;
  padding:64px 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  position:relative;
  overflow:hidden;
}
.cta-band::after{
  content:'';
  position:absolute; right:-60px; top:-60px;
  width:220px; height:220px;
  background:rgba(255,255,255,0.08);
  border-radius:30%;
  transform:rotate(20deg);
}
.cta-band h2{font-size:clamp(26px,3vw,36px); color:#fff; font-weight:700; max-width:480px; position:relative; z-index:2;}
.cta-band p{color:rgba(255,255,255,0.85); margin-top:12px; font-size:15.5px; max-width:440px; position:relative; z-index:2;}
.cta-band .btn-primary{background:#fff; color:var(--blue); position:relative; z-index:2; flex-shrink:0;}
.cta-band .btn-primary:hover{background:var(--orange); color:#fff;}

/* ---------- footer ---------- */
footer{padding:60px 0 36px; border-top:1px solid var(--line);}
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap:50px;
  margin-bottom:50px;
}
.footer-brand{display:flex; align-items:center; gap:10px; font-family:'Space Grotesk'; font-weight:700; font-size:18px; margin-bottom:14px;}
.footer-brand img{height:26px;}
footer p{font-size:14px; color:var(--grey-dim); line-height:1.6; max-width:320px;}
.footer-col h4{font-family:'JetBrains Mono'; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--grey); margin-bottom:18px; font-weight:600;}
.footer-col a{display:block; font-size:14.5px; color:var(--grey-dim); margin-bottom:13px; transition:color .2s;}
.footer-col a:hover{color:var(--paper);}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid var(--line); padding-top:26px;
  font-size:13px; color:var(--grey-dim); flex-wrap:wrap; gap:12px;
}

/* whatsapp float */
.wa-float{
  position:fixed; bottom:24px; right:24px; z-index:60;
  background:#25D366; color:#fff;
  width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 25px -6px rgba(0,0,0,0.45);
  transition:transform .2s ease;
}
.wa-float:hover{transform:scale(1.08);}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:56px;}
  .hero-photo-wrap{order:-1; max-width:300px; margin:0 auto;}
  .about{grid-template-columns:1fr; gap:40px;}
  .services-grid{grid-template-columns:1fr 1fr;}
  .plans-grid{grid-template-columns:1fr;}
  .process-rail{grid-template-columns:1fr 1fr; gap:32px;}
  .process-rail::before{display:none;}
  .cta-band{flex-direction:column; text-align:center; padding:48px 32px;}
  .footer-grid{grid-template-columns:1fr; gap:32px;}
}
@media (max-width: 680px){
  .wrap{padding:0 20px;}
  .navlinks{display:none;}
  .nav-cta{padding:9px 14px; font-size:13px;}
  .hero{padding:48px 0 64px;}
  section{padding:64px 0;}
  .services-grid{grid-template-columns:1fr;}
  .process-rail{grid-template-columns:1fr;}
  .hero-meta{gap:20px;}
  .cta-band h2{max-width:none;}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important;}
}

:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:3px;
}
