/* ===========================================
   COLOMBIASERVER.COM — HOJA DE ESTILOS
   Versión: 2.0 | Multipágina
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---- Variables ---- */
:root {
  --azul:        #1a5fb4;
  --azul-dark:   #114189;
  --azul-light:  #e8f0fc;
  --verde:       #2dc44e;
  --verde-dark:  #1e9438;
  --gris-bg:     #f4f6fa;
  --gris-borde:  #dde3ea;
  --texto:       #1a2332;
  --muted:       #6b7a8d;
  --blanco:      #ffffff;
  --sombra:      0 4px 18px rgba(26,95,180,0.10);
  --radio:       10px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--blanco);
  color: var(--texto);
  font-size: 15px;
  line-height: 1.65;
}
a { color: var(--blanco); text-decoration: none; }
a:hover { color: var(--azul-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--blanco);
  border-bottom: 2px solid var(--azul);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 12px rgba(26,95,180,0.08);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--azul-dark);
  white-space: nowrap;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo span { color: var(--verde); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-menu a {
  padding: 0.45rem 0.85rem;
  border-radius: 7px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--texto);
  transition: background 0.2s, color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.activo { background: var(--azul-light); color: var(--azul); }

.nav-btn {
  background: var(--verde) !important;
  color: var(--blanco) !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 7px !important;
  transition: background 0.2s !important;
}
.nav-btn:hover { background: var(--verde-dark) !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--texto);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--blanco);
  border-bottom: 1px solid var(--gris-borde);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 199;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--texto);
  border-bottom: 1px solid var(--gris-borde);
}
.nav-drawer a:hover { background: var(--azul-light); color: var(--azul); }
.nav-drawer .nav-btn {
  background: var(--verde) !important;
  color: var(--blanco) !important;
  text-align: center;
  margin-top: 0.5rem;
  border-bottom: none !important;
}

/* ---- HERO / BANNER ---- */
.hero {
  background: linear-gradient(135deg, #0d3270 0%, var(--azul) 60%, #2a7fd4 100%) !important;
  color: #ffffff !important;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.hero h1 span { color: #7dd3fc; }
.hero-desc {
  font-size: 1rem;
  opacity: 0.88;
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radio);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-verde {
  background: var(--verde);
  color: var(--blanco);
  box-shadow: 0 4px 14px rgba(45,196,78,0.35);
}
.btn-verde:hover { background: var(--verde-dark); color: var(--blanco); transform: translateY(-1px); }
.btn-blanco {
  background: rgba(255,255,255,0.15);
  color: var(--blanco);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-blanco:hover { background: rgba(255,255,255,0.25); }
.btn-azul {
  background: var(--azul);
  color: var(--blanco);
  box-shadow: var(--sombra);
}
.btn-azul:hover { background: var(--azul-dark); color: var(--blanco); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--azul);
  border: 1.5px solid var(--azul);
}
.btn-outline:hover { background: var(--azul-light); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.hstat-num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blanco);
}
.hstat-num em { color: #7dd3fc; font-style: normal; }
.hstat-label {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* Hero visual box */
.hero-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hbox-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hbox-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.hbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
}
.hbox-item:last-child { border-bottom: none; }
.hbox-icon { font-size: 1.1rem; margin-right: 0.6rem; }
.hbox-name { display: flex; align-items: center; }
.hbox-badge {
  padding: 0.2rem 0.65rem;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
}
.badge-verde { background: rgba(45,196,78,0.2); color: #6ee7a0; }
.badge-azul  { background: rgba(125,211,252,0.2); color: #7dd3fc; }

/* ---- CONTAINER / LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-gris { background: var(--gris-bg); }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
}
.s-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--azul);
  margin-bottom: 0.75rem;
}
.s-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--texto);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.s-title span { color: var(--azul); }
.s-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--azul-dark);
  color: var(--blanco);
  padding: 1.1rem 0;
}
.trust-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 500;
  opacity: 0.9;
}
.trust-item span { font-size: 1.1rem; }

/* ---- CARDS DE SERVICIOS ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
}
.svc-card {
  background: var(--blanco);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  border-color: var(--azul);
  box-shadow: var(--sombra);
  transform: translateY(-3px);
}
.svc-card-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}
.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--texto);
}
.svc-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.svc-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--azul);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 0.55rem; }

/* ---- PLAN CARDS ---- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.plan-card {
  background: var(--blanco);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--sombra); }
.plan-card.destacado {
  border-color: var(--azul);
  box-shadow: 0 0 0 1px var(--azul), var(--sombra);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--azul);
  color: var(--blanco);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.plan-price { margin-bottom: 0.25rem; }
.plan-currency { font-size: 1.1rem; font-weight: 700; color: var(--azul); vertical-align: super; line-height: 1; }
.plan-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--texto);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.plan-feats {
  border-top: 1px solid var(--gris-borde);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pfeat {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}
.pfeat .ok {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--verde-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pfeat .no {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.6;
}

/* Tabs */
.tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.tabs {
  display: flex;
  background: var(--gris-bg);
  border: 1.5px solid var(--gris-borde);
  border-radius: 30px;
  padding: 4px;
  gap: 4px;
}
.tab-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.2s;
}
.tab-btn.activo {
  background: var(--azul);
  color: var(--blanco);
}

/* ---- DOMAIN SEARCH ---- */
.domain-wrap {
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.domain-search {
  display: flex;
  border: 2px solid var(--gris-borde);
  border-radius: var(--radio);
  overflow: hidden;
  background: var(--blanco);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.domain-search:focus-within {
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(26,95,180,0.12);
}
.domain-search input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--texto);
  background: transparent;
}
.domain-search input::placeholder { color: var(--muted); }
.domain-search button {
  padding: 0 1.4rem;
  background: var(--azul);
  color: var(--blanco);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.domain-search button:hover { background: var(--azul-dark); }

.tld-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.tld-chip {
  background: var(--blanco);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 0.85rem 1.1rem;
  text-align: center;
  min-width: 110px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.tld-chip:hover {
  border-color: var(--azul);
  transform: translateY(-2px);
  box-shadow: var(--sombra);
}
.tld-ext { font-size: 1.05rem; font-weight: 800; color: var(--texto); }
.tld-price { font-size: 0.78rem; color: var(--azul); font-weight: 600; margin-top: 0.2rem; }
.tld-note { font-size: 0.7rem; color: var(--muted); margin-top: 0.1rem; }

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.why-card {
  background: var(--blanco);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.why-card:hover { border-color: var(--azul); box-shadow: var(--sombra); transform: translateY(-3px); }
.why-icon { font-size: 2rem; margin-bottom: 0.85rem; }
.why-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ---- RADIO ---- */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.radio-feats {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.5rem 0 2rem;
}
.rfeat {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.rfeat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--azul-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.rfeat h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.2rem; }
.rfeat p { font-size: 0.83rem; color: var(--muted); line-height: 1.55; }

/* Player visual */
.player-card {
  background: var(--blanco);
  border: 1.5px solid var(--gris-borde);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sombra);
}
.player-top {
  background: linear-gradient(135deg, #0d3270, var(--azul));
  padding: 1.75rem;
  text-align: center;
  color: var(--blanco);
}
.wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0.85rem;
}
.wave span {
  display: block;
  width: 4px;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
  animation: wav 1.1s ease-in-out infinite;
}
.wave span:nth-child(1) { height: 12px; animation-delay: 0s; }
.wave span:nth-child(2) { height: 22px; animation-delay: 0.1s; }
.wave span:nth-child(3) { height: 32px; animation-delay: 0.2s; }
.wave span:nth-child(4) { height: 22px; animation-delay: 0.3s; }
.wave span:nth-child(5) { height: 12px; animation-delay: 0.4s; }
@keyframes wav {
  0%,100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(0.35); opacity: 1; }
}
.player-name { font-size: 0.97rem; font-weight: 700; }
.player-sub { font-size: 0.75rem; opacity: 0.7; margin-top: 0.2rem; }

.player-body { padding: 1.25rem; }
.player-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.live-badge {
  background: rgba(239,68,68,0.12);
  color: #ef4444;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.player-progress {
  height: 4px;
  background: var(--gris-bg);
  border-radius: 4px;
  margin-bottom: 1.1rem;
  overflow: hidden;
}
.player-bar {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, var(--azul), var(--verde));
  border-radius: 4px;
  animation: prog 15s linear infinite;
}
@keyframes prog { from{width:5%} to{width:100%} }
.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}
.pctrl {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gris-bg);
  border: 1.5px solid var(--gris-borde);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted);
  transition: all 0.2s;
}
.pctrl:hover { background: var(--azul-light); color: var(--azul); border-color: var(--azul); }
.pctrl.play {
  width: 48px; height: 48px;
  background: var(--azul);
  border-color: var(--azul);
  color: var(--blanco);
  font-size: 1rem;
}
.pctrl.play:hover { background: var(--azul-dark); }

.radio-plans-mini {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gris-borde);
}
.rplan { text-align: center; }
.rplan-n { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.rplan-v { font-size: 1rem; font-weight: 800; color: var(--texto); }
.rplan-p { font-size: 0.72rem; color: var(--azul); font-weight: 600; }

/* ---- CTA BOX ---- */
.cta-box {
  background: linear-gradient(135deg, #0d3270, var(--azul));
  color: var(--blanco);
  border-radius: 16px;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E') repeat;
  pointer-events: none;
  z-index: 0;
}
.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-box p {
  opacity: 0.85;
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-btns .btn {
  position: relative;
  z-index: 2;
  pointer-events: auto !important;
}
.cta-btns .btn-blanco {
  background: rgba(255,255,255,0.18);
  color: #ffffff !important;
  border: 2px solid rgba(255,255,255,0.6);
}
.cta-btns .btn-blanco:hover {
  background: rgba(255,255,255,0.30);
  border-color: #fff;
}
.cta-btns .btn-verde {
  background: var(--verde);
  color: #ffffff !important;
}

/* ---- FOOTER ---- */
/* Asegura colores correctos en footer independiente del contexto */
footer {
  background: #0d1a2d !important;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 1.5rem;
  display: block;
  width: 100%;
}
footer * { box-sizing: border-box; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 1rem;
}
.footer-brand-logo img { height: 28px; width: auto; }
.footer-brand-logo span { color: var(--verde); }
.footer-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 270px;
}
.footer-social { display: flex; gap: 0.5rem; }
.fsocial {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.fsocial:hover { background: var(--azul); color: var(--blanco); border-color: var(--azul); }
.fsocial-wa:hover { background: #25d366 !important; border-color: #25d366 !important; }
.footer-social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #ffffff !important;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55) !important;
  transition: color 0.2s;
}
.footer-col li a:hover { color: #ffffff !important; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.75) !important; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--blanco); }

/* Subpage hero (más compacto) */
.hero-sub {
  background: linear-gradient(135deg, #0d3270 0%, #1a5fb4 60%, #2068c4 100%) !important;
  color: #ffffff !important;
  padding: 5rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: block;
}
.hero-sub::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E') repeat;
  pointer-events: none;
}
/* Orb decorativo */
.hero-sub::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-sub .container { position: relative; z-index: 1; }
.hero-sub h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero-sub p {
  font-size: 1.02rem;
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  color: #fff !important;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 1rem;
  position: relative;
}
.breadcrumb a { color: #fff; }
.breadcrumb span { opacity: 0.7; }

/* Buscador de dominio dentro del hero */
.hero-domain-search {
  margin-top: 2.25rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.hero-domain-row {
  display: flex;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s;
  height: 58px;
}
.hero-domain-row:focus-within {
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
.hero-domain-input {
  flex: 1;
  padding: 0 1.1rem;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  min-width: 0;
}
.hero-domain-input::placeholder { color: rgba(255,255,255,0.5); }
.hero-domain-select {
  padding: 0 0.9rem;
  background: rgba(255,255,255,0.12);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.25);
  border-right: 1px solid rgba(255,255,255,0.25);
  outline: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  appearance: auto;
  min-width: 90px;
}
.hero-domain-select option { background: #1a5fb4; color: #fff; }
.hero-domain-btn {
  padding: 0 1.6rem;
  background: #2dc44e;
  color: #fff;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.hero-domain-btn:hover { background: #1e9438; }
.hero-domain-hint {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.hero-domain-hint span { color: rgba(255,255,255,0.8); font-weight: 600; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-box { order: -1; max-width: 460px; margin: 0 auto; }
  .radio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .burger { display: flex; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tld-chip { min-width: 90px; }
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--blanco);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radio);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--azul); }
.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--azul);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── GARANTÍA GLOBAL DE CLICS EN BOTONES ── */
.btn { pointer-events: auto !important; cursor: pointer !important; position: relative; z-index: 5; }
.cta-box { isolation: isolate; }
.cta-box::before { pointer-events: none !important; z-index: 0; }
.cta-box::after  { pointer-events: none !important; z-index: 0; }
.hero::before, .hero::after { pointer-events: none !important; }
.hero-sub::before, .hero-sub::after { pointer-events: none !important; }
.cta-btns { position: relative; z-index: 5; }
.cta-btns a { pointer-events: auto !important; cursor: pointer !important; }
