/* ============================================================
    1. VARIABLES Y RESET
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-dark: #001D3D;
  --blue-mid: #1565A8;
  --blue-light: #00A3E0;
  --yellow: #FFB800;
  --yellow-pale: #FEF9E7;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --dark: #1A1A23;
  --blue-pale: #EAF3FB;
  --blue-tint: #D6E8F7;
  --text-body: #606060;
  --text-muted: #000000;
  --border: #D8E4EE;
  --green: #27AE60;
  --green-pale: #E8F8EE;
  --orange: #E67E22;
  --orange-pale: #FEF0E6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ============================================================
    2. HEADER
============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 75px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-wrap img {
  width: 55px;
  height: 65px;
  object-fit: contain;
  margin-left: 10px;
}

.logo-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--blue-dark);
  letter-spacing: -0.01em;
  margin-left: -5px;
  line-height: 1;
}

.logo-name span {
  color: var(--yellow);
}

.brand-lockup,
.footer-brand {
  display: flex;
  flex-direction: column;
}

.logo-tagline {
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--blue-mid);
}

.btn-nav {
  background: var(--blue-mid);
  color: white !important;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.99rem !important;
  transition: background 0.2s, transform 0.15s !important;
}

.btn-nav:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}

/* ============================================================
    3. HERO
============================================================ */
.page-hero {
  background: var(--blue-pale);
  border-bottom: 2px solid var(--border);
  padding: 6rem 2.5rem 1rem 1rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--blue-tint) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.4;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  border: 1px solid rgba(230, 126, 34, 0.2);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.hero-tag svg {
  width: 13px;
  height: 13px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 3vw, 2.25rem);
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.page-hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 0.5rem;
}

.hero-tipos {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.hero-tipo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
}

.hero-tipo::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.vanti-card {
  background: var(--white);
  border: 1px solid var(--yellow);
  border-radius: 20px;
  padding: 1rem 2rem;
  text-align: center;
  min-width: 220px;
  flex-shrink: 0;
}

.vanti-logo-area {
  width: 64px;
  height: 64px;
  background: var(--orange-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}

.vanti-logo-area svg {
  width: 30px;
  height: 30px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vanti-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.vanti-card p {
  font-size: 0.999rem;
  color: var(--text-body);
  line-height: 1.5;
}

.vanti-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green);
  color: var(--green-pale);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 0.69rem;
}

/* ============================================================
    4. SECCIÓN GENÉRICA
============================================================ */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -10px;
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-h {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 2.5vw, 2rem);
  color: var(--blue-dark);
  margin-bottom: 0.2rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

/* ============================================================
    5. QUÉ INCLUYE
============================================================ */
.incluye {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.incluye-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.incluye-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.incluye-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.incluye-item:last-child {
  border-bottom: none;
}

.incluye-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.incluye-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.incluye-item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 2px;
}

.incluye-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.media-placeholder {
  background: var(--blue-pale);
  border: 2px dashed var(--blue-tint);
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
}

.media-placeholder:hover {
  border-color: var(--blue-light);
  background: #ddeef8;
}

.media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
    6. PRECIOS
============================================================ */
.precios {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2.5rem;
}

.precios-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.precios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 0.4rem;
}

.precio-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 10px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.precio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 101, 168, 0.1);
  border-color: var(--blue-tint);
}

.precio-tipo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange);
}

.precio-tipo svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.precio-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.3;
}

.precio-valor {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-mid);
  line-height: 1;
}

.precio-unidad {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--orange);
  display: block;
  margin-top: 0.25rem;
}

.precio-nota {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 0.4rem 1rem;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.precio-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--blue-mid);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.precio-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.precio-btn svg {
  width: 13px;
  height: 13px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
    7. PLANOS DESCARGABLES
============================================================ */
.planos {
  padding: 2rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: -94rem;
  margin-bottom: 0.5rem;
  margin-top: 15px;
}

.plano-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: var(--white);
  max-width: 330px;
  margin: 0 auto;
}

.plano-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 29, 61, 0.12);
  border-color: var(--blue-mid);
}

.plano-img {
  aspect-ratio: 2 / 1;
  background: var(--blue-pale);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.plano-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.plano-card:hover .plano-img img {
  transform: scale(1.04);
}

.plano-footer {
  background: var(--white);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.plano-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.plano-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  background: var(--blue-mid);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}

.plano-download:hover {
  background: var(--blue-dark);
  transform: scale(1.02);
}

.plano-download svg {
  width: 13px;
  height: 13px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
    9. FOOTER
============================================================ */
footer {
  background: var(--blue-dark);
  padding: 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner .logo-name {
  color: white;
  font-size: 2rem;
  text-decoration: none;
}

.footer-brand {
  text-decoration: none;
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: .70rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.90rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.90rem;
  color: rgba(255, 255, 255, 0.3);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: var(--blue-mid);
  transform: translateY(-3px);
}

.social-links img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.footer-copy {
  font-size: 0.90rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* ============================================================
   RESPONSIVE
============================================================ */

/* ===========================
   TABLETS
=========================== */
@media (max-width: 1024px) {

  header {
    padding: 0 1.5rem;
  }

  .page-hero {
    padding: 7rem 2rem 2rem;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .page-hero-desc {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-tipos {
    justify-content: center;
  }

  .vanti-card {
    margin: 0 auto;
    max-width: 420px;
    width: 100%;
  }

  .incluye-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .media-placeholder {
    max-width: 700px;
    margin: auto;
    order: -1;
  }

  .precios-grid {
    grid-template-columns: 1fr;
  }

  .planos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

}

/* ===========================
   CELULARES
=========================== */
@media (max-width: 768px) {

  /* HEADER */

  header {
    position: fixed;
    height: auto;
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
    gap: .9rem;
  }

  .logo-wrap {
    justify-content: center;
    gap: .7rem;
  }

  .logo-wrap img {
    width: 42px;
    height: 52px;
    margin-left: 0;
  }

  .brand-lockup {
    align-items: center;
  }

  .logo-name {
    font-size: 1.7rem;
    margin-left: 0;
  }

  .logo-tagline {
    font-size: .58rem;
    text-align: center;
  }

  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  nav a {
    display: block;
    font-size: .9rem;
    white-space: nowrap;
  }

  /* HERO */

  .page-hero {
    padding: 10.5rem 1.3rem 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero-desc {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-tag {
    margin: 0 auto 1rem;
  }

  .hero-tipos {
    justify-content: center;
  }

  .hero-tipo {
    font-size: .9rem;
  }

  .vanti-card {
    padding: 1.2rem;
  }

  /* SECCIONES */

  .incluye,
  .precios,
  .planos {
    padding: 2rem 1.3rem;
  }

  .section-h {
    font-size: 2rem;
  }

  .section-sub {
    font-size: 1rem;
  }

  .incluye-item strong {
    font-size: 1.1rem;
  }

  .incluye-item p {
    font-size: .95rem;
  }

  .precio-card {
    padding: 1.3rem;
  }

  .precio-valor {
    font-size: 2rem;
  }

  .precio-btn {
    width: 100%;
    justify-content: center;
  }

  .planos-grid {
    grid-template-columns: 1fr;
  }

  .plano-card {
    max-width: none;
  }

  /* FOOTER */

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-brand {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

}

/* ===========================
   CELULARES PEQUEÑOS
=========================== */
@media (max-width:480px) {

  header {
    padding: .8rem;
    gap: .8rem;
  }

  .logo-wrap img {
    width: 38px;
    height: 46px;
  }

  .logo-name {
    font-size: 1.45rem;
  }

  .logo-tagline {
    font-size: .5rem;
  }

  nav {
    gap: .8rem;
  }

  nav a {
    font-size: .82rem;
  }

  .page-hero {
    padding-top: 10rem;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .hero-tag {
    font-size: .72rem;
  }

  .hero-tipo {
    font-size: .82rem;
  }

  .vanti-card h3 {
    font-size: 1.1rem;
  }

  .vanti-card p {
    font-size: .9rem;
  }

  .section-h {
    font-size: 1.7rem;
  }

  .section-sub {
    font-size: .95rem;
  }

  .precio-valor {
    font-size: 1.8rem;
  }

  .footer-copy {
    font-size: .8rem;
    line-height: 1.5;
  }

}
