* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --azul-1: #031019;
  --azul-2: #0A1A2F;
  --azul-3: #1D3245;
  --azul-4: #304F6B;
  --azul-5: #8DA9B8;
  --azul-6: #D6E6F3;
  --blanco: #ffffff;
  --gris: #f4f7fb;
  --texto: #111827;
  --verde: #25D366;
  --borde: #dce7ef;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--gris);
  color: var(--texto);
  line-height: 1.6;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  color: white;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(141, 169, 184, 0.35), transparent 35%),
    radial-gradient(circle at bottom right, rgba(48, 79, 107, 0.45), transparent 35%),
    linear-gradient(135deg, #031019 0%, #0A1A2F 45%, #1D3245 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 45px 45px;
  opacity: 0.5;
}

.hero::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  background: rgba(214, 230, 243, 0.08);
  border-radius: 50%;
  right: -250px;
  top: 120px;
  filter: blur(20px);
}

.navbar,
.hero-content {
  position: relative;
  z-index: 2;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 26px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: white;
  padding: 9px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.logo-box h2 {
  font-size: 25px;
  letter-spacing: 2px;
}

.logo-box p {
  color: var(--azul-6);
  font-weight: bold;
  font-size: 14px;
  margin-top: -4px;
}

.menu {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.menu a {
  color: #dce8f0;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.3s ease;
}

.menu a:hover {
  background: rgba(255,255,255,0.14);
  color: white;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
  max-width: 1200px;
  margin: auto;
  padding: 70px 22px 90px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214, 230, 243, 0.14);
  color: var(--azul-6);
  border: 1px solid rgba(214, 230, 243, 0.28);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 20px;
}

.badge::before {
  content: "◆";
  font-size: 11px;
}

.hero-texto h1 {
  font-size: 64px;
  line-height: 1.03;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.hero-texto p {
  font-size: 19px;
  color: #dce8f0;
  max-width: 680px;
}

.hero-botones {
  display: flex;
  gap: 15px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-principal {
  background: var(--azul-6);
  color: var(--azul-1);
  box-shadow: 0 15px 30px rgba(214, 230, 243, 0.18);
}

.btn-principal:hover {
  background: white;
  transform: translateY(-3px);
}

.btn-secundario {
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}

.btn-secundario:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.mini-contactos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.mini-contactos div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 11px 15px;
  border-radius: 14px;
  color: var(--azul-6);
  font-weight: bold;
  backdrop-filter: blur(8px);
}

/* =========================
   HERO CARD
========================= */

.hero-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  border-radius: 34px;
  padding: 38px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.30);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
  opacity: 0.5;
}

.hero-card img,
.hero-card h3,
.hero-card p,
.social-box {
  position: relative;
  z-index: 2;
}

.hero-card img {
  width: 190px;
  background: white;
  border-radius: 28px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.hero-card h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.hero-card p {
  color: #dce8f0;
  margin-bottom: 22px;
}

.social-box {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-box a {
  color: white;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  font-weight: bold;
  transition: 0.3s;
}

.social-box a:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* =========================
   SECCIONES
========================= */

.seccion {
  max-width: 1200px;
  margin: auto;
  padding: 100px 22px;
}

.titulo-seccion {
  text-align: center;
  margin-bottom: 50px;
}

.subtitulo {
  display: inline-block;
  background: #d6e6f3;
  color: #0A1A2F;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 15px;
}

.titulo-seccion h2 {
  font-size: 44px;
  color: var(--azul-2);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.titulo-seccion p {
  color: #5a6775;
  font-size: 17px;
}

/* =========================
   PLAN MICRO
========================= */

.planes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.solo-plan {
  grid-template-columns: 1fr;
  max-width: 610px;
  margin: 0 auto;
}

.plan-card {
  background: white;
  border: 1.5px solid #2f5573;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 22px 55px rgba(10, 26, 47, 0.08);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(10, 26, 47, 0.14);
}

.micro-card {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.micro-card h3 {
  font-size: 24px;
  color: #1d3245;
  margin-bottom: 18px;
  font-weight: 900;
}

.precio {
  font-size: 52px;
  color: #16263a;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1;
}

.precio span {
  font-size: 17px;
  font-weight: normal;
  color: #5e6c7a;
}

.micro-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.micro-card li {
  padding: 10px 0;
  color: #1f2d3d;
  font-weight: 700;
  font-size: 16px;
}

.micro-card li::before {
  content: "✓";
  color: #304F6B;
  font-weight: bold;
  margin-right: 14px;
}

.btn-plan {
  display: block;
  text-align: center;
  text-decoration: none;
  background: white;
  color: #1d3245;
  padding: 15px;
  border-radius: 13px;
  font-weight: 900;
  border: 1px solid #cfd9e1;
  transition: 0.3s;
}

.btn-plan:hover {
  background: #1d3245;
  color: white;
  border-color: #1d3245;
}

/* =========================
   BENEFICIOS
========================= */

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.beneficio {
  background: white;
  border: 1px solid #dfe8ef;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 35px rgba(10, 26, 47, 0.07);
  transition: 0.3s;
}

.beneficio:hover {
  transform: translateY(-6px);
}

.icono {
  width: 50px;
  height: 50px;
  background: #d6e6f3;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  margin-bottom: 18px;
}

.beneficio h3 {
  color: var(--azul-2);
  margin-bottom: 10px;
  font-size: 21px;
}

.beneficio p {
  color: #5a6775;
}

/* =========================
   CONTACTO
========================= */

.contacto-final {
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 80px 22px;
  background:
    radial-gradient(circle at top left, rgba(214,230,243,0.18), transparent 35%),
    linear-gradient(135deg, #031019, #0A1A2F, #1D3245);
  border-radius: 34px;
  color: white;
  box-shadow: 0 25px 60px rgba(10,26,47,0.22);
}

.contacto-final .titulo-seccion h2,
.contacto-final .titulo-seccion p {
  color: white;
}

.contactos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.contacto-item {
  text-decoration: none;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 25px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  transition: 0.3s;
}

.contacto-item:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-5px);
}

.contacto-item strong {
  font-size: 18px;
}

.contacto-item span {
  color: var(--azul-6);
  font-weight: bold;
  font-size: 20px;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.redes a {
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  font-weight: bold;
}

.redes a:hover {
  background: rgba(255,255,255,0.16);
}

/* =========================
   BOTÓN FLOTANTE
========================= */

.whatsapp-flotante {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--verde);
  color: white;
  padding: 15px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
  z-index: 99;
  transition: 0.3s;
}

.whatsapp-flotante:hover {
  transform: translateY(-4px);
}

/* =========================
   FOOTER
========================= */

footer {
  background: #06111f;
  color: #dce8f0;
  text-align: center;
  padding: 25px;
}

/* =========================
   RESPONSIVE CELULAR
========================= */

@media (max-width: 950px) {
  .hero-content,
  .beneficios-grid,
  .contactos-grid {
    grid-template-columns: 1fr;
  }

  .hero-texto h1 {
    font-size: 42px;
  }

  .menu {
    display: none;
  }

  .navbar {
    justify-content: center;
  }

  .hero-card img {
    width: 150px;
  }

  .titulo-seccion h2 {
    font-size: 34px;
  }

  .micro-card {
    min-height: auto;
  }

  .precio {
    font-size: 44px;
  }

  .whatsapp-flotante {
    right: 15px;
    bottom: 15px;
    padding: 13px 16px;
  }
}