:root{
  --bg:#0b1220;
  --surface:#0f1a2e;
  --card:#111f36;
  --text:#eef2ff;
  --muted:#a6b2c7;
  --line:rgba(255,255,255,.10);

  --primary:#3b82f6;
  --primary2:#60a5fa;

  --radius:18px;
  --shadow:0 18px 45px rgba(0,0,0,.35);
  --shadow2:0 10px 22px rgba(0,0,0,.22);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a{color:inherit}
.container{max-width:1120px; margin:0 auto; padding:0 18px}

.tiny{font-size:13px}
.muted{color:var(--muted)}
.center{text-align:center}

.topbar{
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.topbar__left{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  color: var(--muted);
}
.topbar__left i{margin-right:6px; color: rgba(255,255,255,.8)}
.topbar__link{
  text-decoration:none;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.topbar__link i{margin-right:6px; color:#25D366}

.header{
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 80px;
  display: flex;
  align-items: center;

  background: rgba(11,18,32,.72);   /* o el color que uses */
  backdrop-filter: blur(8px);      /* opcional, se ve pro */
  border-bottom: 1px solid rgba(255,255,255,.08); /* opcional */
}


.header__inner{
  width: 100%;
  padding: 0;                   /* quita padding excesivo */
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width: 280px;
}

.brand__logo{
  height: 180px;     /* aquí está la magia */
  width:auto;
  display:block;
}

.brand__name{
  font-weight:800;
  letter-spacing:-0.02em;
  color: var(--text);
  white-space: nowrap;
}

.brand__tag{
  margin-left:10px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  opacity: .9;
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}

/* en móviles escondemos el tagline */
@media (max-width: 820px){
  .brand__tag{ display:none; }
}


.nav{display:flex; gap:18px; align-items:center}
.nav__link{
  text-decoration:none;
  color: var(--muted);
  padding:10px 12px;
  border-radius: 12px;
}
.nav__link:hover{background: rgba(255,255,255,.05); color: var(--text)}
.nav__cta{
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  color: whitesmoke !important;
  font-weight: 800;
  box-shadow: var(--shadow2);
}
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 12px;
  padding:10px 12px;
  cursor:pointer;
}

.mobile{
  border-top:1px solid var(--line);
  background: rgba(11,18,32,.90);
}
.mobile a{
  display:block;
  padding:14px 18px;
  text-decoration:none;
  color: var(--muted);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.mobile a:hover{color:var(--text); background: rgba(255,255,255,.04)}

.hero{
  position:relative;
  min-height: 560px;
  display:flex;
  align-items:center;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    url("https://images.unsplash.com/photo-1545239351-1141bd82e8a6?auto=format&fit=crop&w=1600&q=70")
    center/cover no-repeat;
  filter: saturate(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(11,18,32,.93) 0%, rgba(11,18,32,.72) 55%, rgba(11,18,32,.85) 100%),
    radial-gradient(700px 400px at 20% 10%, rgba(59,130,246,.20), transparent 60%);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:18px;
  padding: 64px 0;
  align-items:start;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 13px;
  backdrop-filter: blur(6px);
}
.pill i{color: rgba(255,255,255,.9)}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.hero__subtitle{
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.7;
  margin: 0 0 18px;
}
.hero__buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 16px;
}
.hero__checks{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
  color: var(--muted);
}
.hero__checks i{
  color: #22c55e;
  margin-right:8px;
}

.hero__card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(17,31,54,.85));
  border: 1px solid rgba(96,165,250,.25);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero__card h3{margin:0 0 8px}
.card__list{
  list-style:none;
  padding:0;
  margin: 12px 0 14px;
  display:grid;
  gap:10px;
  color: var(--muted);
}
.card__list i{color:#22c55e; margin-right:8px}
.card__note{
  margin-top: 12px;
  display:flex;
  gap:10px;
  align-items:center;
  color: var(--muted);
}
.card__note i{color: rgba(255,255,255,.85)}

.section{padding:70px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 60%);
}
.section__head{margin-bottom: 18px}
.section__head h2{
  margin:0 0 8px;
  font-size: 30px;
  letter-spacing: -.02em;
}

.cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.service{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  transition: transform .2s ease, background .2s ease;
}
.service:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
}
.service__icon{
  width:48px; height:48px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(59,130,246,.25), rgba(96,165,250,.12));
  border:1px solid rgba(96,165,250,.25);
  margin-bottom: 10px;
}
.service__icon i{font-size: 20px}
.service h3{margin: 6px 0 8px}
.mini{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.mini li{margin: 6px 0}

.mapwrap{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  background: rgba(255,255,255,.04);
}
.mapwrap iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

.badges{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.badge2{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}
.badge2 i{color: rgba(255,255,255,.85)}

.contact{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:14px;
}
.infoCard, .contact__form{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.infoRow{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.infoRow:last-of-type{border-bottom:0}
.infoRow__icon{
  width:42px; height:42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(59,130,246,.18);
  border:1px solid rgba(96,165,250,.20);
}
.infoRow__icon i{font-size: 18px}
label{
  display:grid;
  gap:8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
textarea{min-height: 120px; resize: vertical}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 800;
  border:1px solid transparent;
  cursor:pointer;
}
.btn--primary{
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  color: #071021;
  box-shadow: var(--shadow2);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color: var(--text);
}
.btn--full{width:100%}

.waFloat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #25D366;
  color: #06210f;
  display:grid;
  place-items:center;
  text-decoration:none;
  box-shadow: var(--shadow);
  z-index: 30;
  border: 1px solid rgba(255,255,255,.20);
}
.waFloat i{font-size: 24px}

.footer{
  border-top:1px solid var(--line);
  padding: 22px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color: var(--muted);
}

@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .hero__inner{grid-template-columns: 1fr}
  .nav{display:none}
  .nav__toggle{display:inline-flex}
  .contact{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .cards{grid-template-columns: 1fr}
  .hero{min-height: auto}
  .hero__inner{padding: 52px 0}
}
/* From Uiverse.io by barisdogansutcu */ 
.btn {
  padding: 13px 25px;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  background-color: #071021;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.5s ease;
}

.btn:hover {
  letter-spacing: 3px;
  background-color:#415a77;
  color: hsl(0, 0%, 100%);
  box-shadow: #415a77 0px 7px 29px 0px;
}

.btn:active {
  letter-spacing: 3px;
  background-color: white;
  color: hsl(0, 0%, 100%);
  box-shadow: #415a77 0px 0px 0px 0px;
  transform: translateY(10px);
  transition: 100ms;
}

/* ===== Paquetes / Pricing ===== */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top: 18px;
}

.plan{
  position:relative;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  display:flex;
  flex-direction:column;
}



.plan__head h3{
  margin:0 0 6px;
  font-size: 20px;
  letter-spacing: -.02em;
}
.plan__subtitle{
  margin:0 0 12px;
  color: var(--muted);
}

.plan__list{
  list-style:none;
  padding:0;
  margin: 0 0 16px;
  display:grid;
  gap:10px;
  color: var(--muted);
}
.plan__list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  line-height: 1.35;
}
.plan__list i{
  margin-top: 2px;
  color:#22c55e;
}

.plan__extra i{
  color: #60a5fa;
}

.plan__note{
  margin-top: 12px;
  text-align:center;
}

.plan--featured{
  border:1px solid rgba(96,165,250,.35);
  background: linear-gradient(180deg, rgba(96,165,250,.12), rgba(255,255,255,.05));
  transform: translateY(-6px);
}

.plan__badge{
  position:absolute;
  top:14px;
  right:14px;
  font-size: 12px;
  font-weight: 800;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(96,165,250,.18);
  border: 1px solid rgba(96,165,250,.35);
  color: var(--text);
}
.plan .btn{
  margin-top: auto;
}


/* ===== Extras ===== */
.addons{
  margin-top: 26px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 18px;
}

.addons__head h3{
  margin:0 0 6px;
  font-size: 20px;
  letter-spacing: -.02em;
}
.addons__head{margin-bottom: 12px;}

.addons__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}

.addon{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.addon__icon{
  width:42px;
  height:42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(59,130,246,.18);
  border:1px solid rgba(96,165,250,.20);
}
.addon__icon i{font-size: 18px;}

@media (max-width: 980px){
  .pricing{grid-template-columns: 1fr;}
  .plan--featured{transform:none;}
  .addons__grid{grid-template-columns: 1fr;}
}
@media (max-width: 768px){
  .topbar{
    display: none;
  }
}
@media (max-width: 768px){
  .brand__tag{
    display: none;
  }
}
@media (max-width: 768px){
  .header{
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
  }

  .brand__logo{
    height: 180px;
  }
}

/* ===== MOBILE MENU ===== */
#mobileMenu{
  position: fixed;
  top: 64px;                 /* altura real de tu header */
  right: 12px;               /* anclado a la derecha */
  left: auto;
  width: min(260px, calc(100vw - 24px));
  background: #0b1220;
  border-radius: 12px;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  overflow: hidden;
}

/* links */
#mobileMenu a{
  display: block;
  padding: 14px 16px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#mobileMenu a:last-child{
  border-bottom: none;
}
#mobileMenu a.is-active{
  background: rgba(96,165,250,.14);
  border-left: 3px solid rgba(96,165,250,.9);
}


