@charset "UTF-8";
/* Portada — estilos por sección */
body.front-page {
  background-color: #080c14;
  color: #d9e2ff;
  overflow-x: hidden;
  position: relative;
}
body.front-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(circle at 0% 0%, rgba(0, 212, 255, 0.12) 0%, transparent 600px), radial-gradient(circle at 100% 100%, rgba(123, 110, 246, 0.1) 0%, transparent 500px);
}
body.front-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
body.front-page .aurora-text-gradient {
  background: linear-gradient(90deg, #00d4ff 0%, #7b6ef6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.front-page .aurora-btn-gradient {
  background: linear-gradient(90deg, #00d4ff 0%, #7b6ef6 100%);
}
body.front-page .glass-card {
  background: rgba(15, 22, 36, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.15);
}
body.front-page .bento-glow {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}
body.front-page .connector-line {
  background: linear-gradient(90deg, #00d4ff, #7b6ef6);
  opacity: 0.3;
}

.front-page__main {
  position: relative;
  min-height: 100vh;
  padding-top: 5rem;
}
.front-page__main > section {
  margin-bottom: 4rem;
}

/* Section 1 — Hero */
.section1 {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: 1.25rem;
  background-size: cover;
  background-position: center;
}
.section1__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .section1__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.section1__badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  margin-bottom: 1.5rem;
}
.section1__mascot-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}
.section1 .hero-glass-card {
  background: rgba(15, 22, 36, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.section1 .hero-glass-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  animation: fp-bounce 6s ease-in-out infinite;
}

@keyframes fp-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/* Section 2 — Trust bar */
.section2 {
  background: #0f1624;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.section2__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.7;
}
.section2__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section2__item .material-symbols-outlined {
  color: #00d4ff;
}

/* Section 3 — Paquetes */
.section3 {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}
.section3__title {
  text-align: center;
  margin-bottom: 4rem;
}
.section3__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .section3__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .section3__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .section3__highlight {
    grid-column: span 2;
  }
}
.section3__badge-popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #00d4ff;
  color: #080c14;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 10;
}

/* Section 4 — Proceso */
.section4 {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  position: relative;
}
.section4__title {
  text-align: center;
  margin-bottom: 4rem;
}
.section4__line {
  display: none;
}
@media (min-width: 1024px) {
  .section4__line {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: -1;
  }
}
.section4__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .section4__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .section4__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section4__step-num {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid #00d4ff;
  color: #00d4ff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Section 5 — Contacto */
.section5 {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}
.section5__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .section5__grid {
    grid-template-columns: 3fr 2fr;
  }
}
.section5__input, .section5__textarea {
  width: 100%;
  background: rgba(15, 22, 36, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.section5__input:focus, .section5__textarea:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 0 1px #00d4ff;
}
.section5__services-card {
  border-color: rgba(123, 110, 246, 0.2);
  backdrop-filter: blur(16px);
}/*# sourceMappingURL=index.css.map */