@font-face {
  font-family: 'MiedingerBold';
  src: url('../fonts/Miedinger_-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPEditorial';
  src: url('../fonts/PPEditorialNew-UltraboldItalic-BF644b214faef01.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'FormaBold';
  src: url('../fonts/FormaDJRBanner-Bold-Testing.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}


main.main-content {
  flex: 1;
  margin-top: 80px;
  /* Altura navbar fija */
  padding: 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  padding-left: 0;
}

.navbar {
  background: linear-gradient(135deg, rgba(0, 179, 230, 0.15) 0%, rgba(150, 130, 220, 0.15) 100%), black;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  margin-left: 0px;
  padding-left: 0px;
}

.logo {
  height: 55px;
  cursor: pointer;
  transition: filter 0.3s ease;
  border: none;
  outline: none;
}

.logo:hover {
  filter:
    drop-shadow(0 0 2px rgba(0, 179, 230, 0.7)) drop-shadow(0 0 4px rgba(0, 179, 230, 0.5)) drop-shadow(0 0 8px rgba(0, 179, 230, 0.3));
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  justify-content: center;
  flex: 1;
}

.nav-links li {
  padding: 0 5px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: #00b3e6;
  box-shadow:
    0 0 5px rgba(0, 179, 230, 0.7),
    0 0 10px rgba(0, 179, 230, 0.5),
    0 0 15px rgba(0, 179, 230, 0.3),
    0 0 20px rgba(0, 179, 230, 0.2);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.nav-links a:hover {
  color: #00b3e6;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Header principal */
.header-main {
  margin-bottom: 10px;
  text-align: center;
}

.header-main h1 {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(120deg, #00b3e6 20%, #fff 50%, #00b3e6 80%);
  background-size: 200%;
  background-position: 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.6s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-main h1:hover {
  background-position: 100%;
}

.header-main i {
  color: gold;
  font-size: 1.8rem;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 179, 230, 0.3);
    border-color: rgba(0, 179, 230, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(0, 179, 230, 0.6);
    border-color: rgba(0, 179, 230, 0.7);
  }
}

.header-main p {
  background: linear-gradient(135deg, rgba(0, 179, 230, 0.15) 0%, rgba(150, 130, 220, 0.15) 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 12px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 24px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 179, 230, 0.3);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 179, 230, 0.4);
  text-shadow: 0 0px 5px rgba(0, 179, 230, 0.6);
  animation: pulseGlow 3s ease-in-out infinite;
  position: relative;
}

.header-main p::before {
  content: "★";
  color: gold;
  margin-right: 8px;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}

/* Sección hero introductoria (sin tarjeta) */
/* ==========================
   HERO INTRO GENERAL
========================== */
.hero-intro {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px 50px;
  text-align: center;
  border-radius: 14px;
  background: linear-gradient(270deg,
      #00131a 0%,
      #002837 25%,
      #00384e 50%,
      #002837 75%,
      #00131a 100%);
  background-size: 600% 600%;
  animation: gradientSweep 12s ease infinite, fadeInUp 1s ease-out;
  box-shadow: 0 6px 36px rgba(0, 179, 230, 0.08);
  color: #d0f0fb;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================
   TÍTULO ANIMADO
========================== */
.hero-intro h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #00b3e6, #ffffff 50%, #00b3e6);
  background-size: 200%;
  background-position: 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientTextShift 5s linear infinite;
  text-shadow: 0 0 12px rgba(0, 179, 230, 0.3);
  position: relative;
  display: inline-block;
}

.hero-intro h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 4px;
  background: #00b3e6;
  border-radius: 2px;
  box-shadow:
    0 0 6px rgba(0, 179, 230, 0.7),
    0 0 12px rgba(0, 179, 230, 0.5);
  animation: underlineGrow 2s ease forwards;
}

/* ==========================
   SUBTÍTULO
========================== */
.hero-intro p {
  font-family: 'MiedingerBold', sans-serif;
  font-size: 1.1rem;
  color: #cbefff;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================
   LISTA DE BENEFICIOS
========================== */
.hero-intro ul {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 600px;
}

.hero-intro ul li {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #cbefff;
  line-height: 1.5;
  text-align: left;
  font-style: italic;
}

.hero-intro ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  color: #00c4f0;
  font-size: 1.1rem;
  text-shadow: 0 0 6px rgba(0, 179, 230, 0.5);
}

.hero-benefits .icon {
  margin-right: 10px;
  font-size: 1.2rem;
  font-style: normal;
}

/* ==========================
   ANIMACIONES
========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGrow {
  0% {
    width: 0;
  }

  50% {
    width: 60%;
  }

  100% {
    width: 100%;
  }
}

@keyframes gradientTextShift {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}

@keyframes gradientSweep {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 100%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 0%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ==========================
   EFECTO DE ENTRADA
========================== */
.hero-intro h2,
.hero-intro p,
.hero-intro ul {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.hero-intro h2 {
  animation-delay: 0.2s;
}

.hero-intro p {
  animation-delay: 0.4s;
}

.hero-intro ul {
  animation-delay: 0.6s;
}




/* Botón CTA */
.cta-button {
  font-family: 'FormaBold', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: capitalize;
  background: linear-gradient(135deg, #0077cc 0%, #00b3e6 100%);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 35px;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 6px 12px rgba(0, 179, 230, 0.3);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;

  /* Animación fadeInUp */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
  /* aparece después de los demás elementos */
}

.cta-button:hover {
  background: linear-gradient(135deg, #0089d1 0%, #00c0f0 100%);
  box-shadow: 0 6px 16px rgba(0, 179, 230, 0.4);
  transform: translateY(-2px);
  color: #e0f7ff;
}


/* Contenedor de tarjetas */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 10px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tarjetas individuales */
.card {
  background: linear-gradient(45deg, rgba(0, 130, 180, 0.85), rgba(0, 40, 80, 0.5));
  border-radius: 15px;
  padding: 25px 30px;
  width: 280px;
  box-shadow:
    0 4px 12px rgba(0, 130, 180, 0.3),
    inset 0 0 12px rgba(0, 230, 255, 0.25);
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 10px 20px rgba(0, 130, 180, 0.5),
    inset 0 0 20px rgba(0, 230, 255, 0.35);
}

.card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(120deg, #d9ffff, #a2fdfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.3);
  transition: transform 0.3s ease;
  color: #00e6d2;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.card h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #00b3e6;
  margin: 10px auto 0 auto;
  box-shadow:
    0 0 6px rgba(0, 179, 230, 0.6),
    0 0 12px rgba(0, 179, 230, 0.4);
}

.card:hover h3 {
  transform: scale(1.03);
}

.card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0px;
  top: 0;
  color: #d4a900;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.card ul li:hover::before {
  transform: scale(1.2);
}


.card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #cbefff;
  line-height: 1.4;
}

/* Precio */
.card .price {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.550rem;
  color: #fff5dd;
  margin-top: 1rem;
}

/* Botón comprar */
.buy-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #f6c700 0%, #ff9900 100%);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow:
    0 0 8px rgba(255, 187, 0, 0.3),
    0 4px 12px rgba(255, 153, 0, 0.2);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.buy-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.buy-button:hover {
  background: linear-gradient(135deg, #ffd633 0%, #ffaa00 100%);
  transform: translateY(-2px);
  color: #fff;
  box-shadow:
    0 0 12px rgba(255, 204, 0, 0.4),
    0 6px 18px rgba(255, 170, 0, 0.3);
}

.buy-button:hover::before {
  left: 125%;
}

/* Sección contacto */
.contact-section {
  max-width: 700px;
  margin: 0 auto 50px auto;
  padding: 0 15px;
}

.contact-section h2 {
  font-size: 2.4rem;
  color: #00b3e6;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-section p {
  font-size: 1.2rem;
  color: #b0e0ff;
  line-height: 1.5;
}

/* Footer */
/* footer { */
/* background-color: #070707; */
/* padding: 10px 0; */
/* text-align: center; */
/* font-size: 0.75rem; */
/* color: #888; */
/* user-select: none; */
/* } */

/* Animations: scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateZ(60px) scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

.decorative-line {
  height: 4px;
  width: 100%;
  background: linear-gradient(45deg, rgba(0, 130, 180, 0.9), rgba(0, 40, 80, 0.65));
  box-shadow:
    0 0 6px rgba(0, 179, 230, 0.4),
    0 0 12px rgba(0, 130, 180, 0.3);
  border-radius: 10px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

/* Efecto de brillo animado más sutil */
.decorative-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  height: 100%;
  width: 50%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: shine 2.5s infinite;
  border-radius: 10px;
}

@keyframes shine {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}



.formulario-compra {
  display: none;
  max-width: 400px;
  margin: 40px auto;
  background: #001820;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 179, 230, 0.15);
}

.formulario-compra input,
.formulario-compra select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #00b3e6;
  border-radius: 6px;
  background-color: #0d0d0d;
  color: #f5f5f5;
  font-size: 1rem;
}

.btn-pago {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #f6c700 0%, #ff9900 100%);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow:
    0 0 8px rgba(255, 187, 0, 0.3),
    0 4px 12px rgba(255, 153, 0, 0.2);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-pago:hover {
  background: linear-gradient(135deg, #ffb700 0%, #ff7a00 100%);
  color: #fff;
  box-shadow:
    0 0 12px rgba(255, 187, 0, 0.6),
    0 6px 16px rgba(255, 153, 0, 0.4);
  transform: translateY(-2px);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 20, 30, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.modal-content {
  background: linear-gradient(135deg, #002837, #00131a);
  color: #cbefff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow:
    0 0 12px rgba(0, 179, 230, 0.3),
    inset 0 0 10px rgba(0, 255, 255, 0.08);
  width: 90%;
  max-width: 420px;
  font-family: 'Inter', sans-serif;
  animation: fadeInScale 0.3s ease-out;
  position: relative;
  border: 1px solid rgba(0, 179, 230, 0.3);
}

.modal-content h2 {
  font-family: 'MiedingerBold', sans-serif;
  font-size: 1.6rem;
  font-style: italic;
  color: #fff5dd;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 179, 230, 0.4);
  text-align: center;
}

.modal-content label {
  display: block;
  font-family: 'Inter', sans-serif;
  margin-top: 1rem;
  font-weight: 400;
  color: #fff5dd;
  font-size: 0.95rem;
  text-align: left;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 0.75rem;
  margin-top: -10px;
  border: 1px solid rgba(0, 179, 230, 0.5);
  border-radius: 8px;
  background-color: #0d0d0d;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content select:focus {
  outline: none;
  border-color: #00b3e6;
  box-shadow: 0 0 5px rgba(0, 179, 230, 0.4);
}

/* Botón de pago dentro del modal */
.modal-content .btn-pago {
  background: linear-gradient(135deg, #f6c700, #ff9900);
  color: #000;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.5rem;
  width: 100%;
  box-shadow:
    0 0 8px rgba(255, 187, 0, 0.3),
    0 4px 12px rgba(255, 153, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.modal-content .btn-pago:hover {
  background: linear-gradient(135deg, #ffb700, #ff7a00);
  color: #fff;
  box-shadow:
    0 0 12px rgba(255, 187, 0, 0.6),
    0 6px 16px rgba(255, 153, 0, 0.4);
  transform: translateY(-2px);
}

/* Botón cerrar modal */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #00b3e6;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #fff5dd;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.plan-resumen {
  margin-top: 1rem;
  color: #fff5dd;
  text-align: center;
  font-size: 0.95rem;
}


.testimonial-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #00b3e6;
  text-shadow:
    0 0 5px rgba(0, 179, 230, 0.5),
    0 0 10px rgba(0, 179, 230, 0.3);
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(135deg, #002d40, #004466);
  border-radius: 15px;
  padding: 25px 20px;
  width: 280px;
  color: #e0f7ff;
  box-shadow:
    0 0 12px rgba(0, 179, 230, 0.3),
    inset 0 0 6px rgba(0, 255, 255, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 20px rgba(0, 179, 230, 0.4),
    inset 0 0 12px rgba(0, 255, 255, 0.2);
}

.testimonial-card p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 500;
}

.testimonial-card span {
  display: block;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  color: #fff5dd;
  margin-top: 9px;
  letter-spacing: 1px;
}


.footer-contacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 30px;
  background-color: #002d40;
  color: #e0f7ff;
  font-size: 0.75rem;
  user-select: none;
  text-align: center;
}

.footer-info a {
  color: #00b3e6;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: #00ffcc;
}

.faq-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: left;
  color: #e0f7ff;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #00b3e6;
  margin-bottom: 30px;
  text-shadow:
    0 0 5px rgba(0, 179, 230, 0.5),
    0 0 10px rgba(0, 179, 230, 0.3)
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #002d40;
  box-shadow: 0 0 10px rgba(0, 179, 230, 0.1);
  overflow: hidden;
}

.faq-question {
  font-family: 'MiedingerBold', sans-serif;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  color: #d0f0fb;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #00384e;
}

.faq-answer {
  font-family: 'Roboto', sans-serif;
  max-height: 0;
  overflow: hidden;
  background-color: #011e2b;
  padding: 0 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: max-height 0.2s ease, padding 0.4s ease;
}

.faq-answer.open {
  padding: 15px 20px;
  max-height: 300px;
}



@media (min-width: 1024px) {

  .footer-contacto {
    font-size: 1rem;
  }

  .faq-section {
    max-width: 1185px;
  }

  .faq-section h2 {
    font-size: 3.5rem;
  }


  .faq-question {
    font-size: 1.625rem;
  }

  .faq-answer {
    font-size: 1.3125rem;
  }

  /* Testimonial */

  .testimonial-section h2 {
    font-size: 3.3rem;
  }

  .testimonial-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    /* Espacio entre tarjetas */
    justify-content: center;
    /* Centra las tarjetas */
  }

  .testimonial-card {
    padding: 30px 25px;
    flex: 1 1 400px;
    max-width: 600px;
    min-width: 300px;
    aspect-ratio: 4 / 1;
  }

  .testimonial-card p {
    font-size: 1.5rem;
  }

  .testimonial-card span {
    font-size: 1.8rem;
  }


  /* CARD */
  .card {
    width: 30%;
    aspect-ratio: 3 / 4;
    min-width: 280px;
    max-width: 360px;
  }

  .card h3 {
    font-size: 2.6rem;
  }

  .card ul li {
    font-size: 1.2rem;
    padding-left: 30px;
    letter-spacing: 1px;
  }

  .card p {
    font-size: 1.425rem;
    margin-top: 20px;
  }

  .card .price {
    font-size: 1.9rem;
    margin-top: 1rem;
  }

  .card .buy-button {
    font-size: 1.425rem;
  }

  /* HERO */

  .hero-intro {
    width: 100%;
    max-width: 1190px;
    margin: 60px auto;
    padding: 50px 50px;
  }

  .hero-intro h2 {
    font-size: 2.4rem;
  }

  .hero-intro p {
    font-size: 1.6rem;
  }

  .hero-intro ul li {
    font-size: 1.5rem;
  }

  .hero-intro .icon {
    font-size: 2.4rem
  }

  .hero-intro .cta-button {
    font-size: 1.65rem;
  }

  .header-main h1 {
    font-size: 4.8rem;
  }

  .header-main i {
    font-size: 3rem;
  }

  .header-main p {
    font-size: 1.4rem;
    padding: 14px 32px;
    max-width: 460px;
    margin-top: 12px;
    margin-bottom: 16px;
    letter-spacing: 1.2px;
    text-shadow: 0 0 6px rgba(0, 179, 230, 0.7);
  }

  .header-main p::before {
    font-size: 1.6rem;
    left: 16px;
  }

  .nav-center a {
    font-size: 1.5rem;
  }

  .logo {
    height: 100%;
    max-height: 65px;
    width: auto;
  }

  .navbar {
    height: 80px;
  }


}

@media (max-width: 533px) {
  .hero-intro {
    padding: 1rem;
  }

  .hero-intro h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .hero-intro p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .hero-intro ul {
    padding-left: 1.2rem;
  }

  .hero-intro ul li {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .header-main h1 {
    font-size: 2.625rem;
  }

  .header-main p {
    font-size: 0.95rem;
    width: 280px;
  }

  .header-main p::before {
    font-size: 1.2rem;
    left: 10px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    height: auto;
    position: absolute;
  }

  .logo {
    max-height: 50px;
  }

  .nav-links {
    flex-direction: row;
    /*  mantiene los links en línea */
    justify-content: center;
    flex-wrap: wrap;
    /* evita que se encimen si no hay espacio */
    gap: 16px;
  }

  .navbar {
    padding-bottom: 0.5rem;
    /* o margin-bottom: 0.5rem; */
  }

  .header-main {
    margin-top: 1rem;
    /* separa un poco del nav */
  }


}