:root {
  --color-bg: #FFFFFF;
  --color-text: #1a1a1a;
  --color-acento: #F57C00;
  --color-acento-degradado: linear-gradient(45deg, #FFA000, #F57C00);
  --color-secundario: #FFE0B2;
  --color-blanco: #FFFFFF;
  --color-gris: #757575;

  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --font-size-title: 75px;
  --font-size-subtitle: 26px;
  --font-size-text: 22px;
  --font-size-small: 14px;
}

body {
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
}


header, section, footer {
  padding: 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #121212;
  padding:  1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 83%;
  margin: 0 auto;
  box-sizing: border-box;
}

.nav-logo img {
  height: 77px;
  margin-top: 10px;
}

/* Estilos para los enlaces del menú */
.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  margin: 0 10px;
}

.nav-menu a:hover {
  color: var(--color-acento);
}


.nav-cta {
  display: flex;
  align-items: center;
}


.btn-primary {
  background-color: #F57C00;
  color: white;
  padding: 0.5rem 1.0rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-nav {
  background-color: #121212;
  color: white;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 9px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: linear-gradient(270deg, #FFA000, #FF5722, #F57C00, #FF9800);
  background-size: 800% 800%;
  animation: fondoAnimado 15s ease infinite;
  color: white;
  text-align: center;
  padding: 1.5rem 2rem 6rem;
  clip-path: ellipse(100% 80% at 50% 20%);
}

.hero-parrafo {
  font-size: 28px;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  font-weight: 400;
  color: #171717;
}

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

.imagen-hero {
  max-width: 100%;
  width: 800px;
  display: block;
  margin: 0 auto 2rem auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  width: 83%;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

.beneficios {
  background: linear-gradient(270deg, #FF5722, #FFA000, #F57C00, #ff511c);
  background-size: 800% 800%;
  animation: fondoAnimado 15s ease infinite;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.container_beneficios {
  max-width: 1200px;
  width: 60%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center; /* 🔧 centra visualmente el contenido interno */
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: white;
  max-width: 100%;
  width: 100%;
}

.beneficio.izquierda {
  width: 95%;
  margin-left: 0;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0rem;
  justify-content: flex-start;
  flex-direction: row; /* ✅ Asegura el orden: círculo - texto */
  text-align: left;
}

.beneficio.derecha {
  width: 95%;
  padding: 0rem;
  margin-left: auto;
  margin-right: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  justify-content: flex-end;
  text-align: right;
}

.circulo-num {
  width: 90px;
  height: 90px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.circulo-num span {
  font-size: 40px;
  font-weight: 800;
  color: white;
}

.beneficio p {
  width: 60%;
  font-size: 20px;
  font-weight: bold;
  max-width: 400px;
  margin: 0;
}



.section-title {
  font-size: 75px;
  margin-bottom: 1rem;
  font-family: var(--font-title);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card {
  background: var(--color-blanco);
  padding: 0rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 280px;
}

.card-img {
  width: 100%;
  height: auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  margin: 2rem;
}

.card p {
  font-size: var(--font-size-text);
  color: var(--color-text);
  margin: 2rem;
}

.ctm_final {
  text-align: center;
  margin: 2rem auto;
  padding: 1rem 1rem 2rem;
  max-width: 800px;
}

.ctm_final p {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.4;
}

.ctm_final .btn-primary {
  font-size: 18px;
  padding: 0.7rem 1.5rem;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.ctm_final .btn-primary:hover {
  background-color: #e55a00;
}

/* 🔶 Sección Comparativa */
#comparativa {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

#comparativa .titulo-comparativa {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-title);
  color: var(--color-text);
}

#comparativa .subtitulo-comparativa {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #444;
}

.tabla-comparativa {
  overflow-x: auto;
  width: 100%;
  margin: 0 auto 3rem;
}

.tabla-comparativa table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 18px;
}

.tabla-comparativa th,
.tabla-comparativa td {
  padding: 1rem;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.tabla-comparativa th {
  background-color: #f8f8f8;
  font-weight: 600;
  color: #333;
}

.tabla-comparativa td {
  background-color: #fafafa;
  color: #333;
}

.tabla-comparativa td.highlight {
  color: var(--color-bg);
  font-weight: bold;
  background-color: var(--color-gris);
}

/* 🔽 Bloque de cierre */
.bloque-cierre {
  max-width: 800px;
  margin: 3rem auto 0;
  font-size: 20px;
  line-height: 1.7;
  color: #333;
}

.bloque-cierre p {
  margin-bottom: 1.5rem;
}

.precio-lanzamiento {
  font-size: 26px;
  color: #d84315;
  font-weight: 700;
}

.cta-texto {
  font-size: 20px;
  margin-top: 2rem;
  font-weight: 500;
}

.bloque-cierre .btn-primary {
  margin-top: 1rem;
  font-size: 18px;
  padding: 0.8rem 1.8rem;
}

.tarjeta-cierre {
  background: linear-gradient(270deg, #1c1c1c, #080808, #161616, #0e0e0e);
  background-size: 800% 800%;
  animation: fondoAnimado 15s ease infinite;
  color: white;
  border: 4px #080808;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.tarjeta-cierre:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.tarjeta-cierre p {
  margin-bottom: 1.2rem;
  font-size: 19px;
  line-height: 1.6;
  color: var(--color-blanco);
}

.tarjeta-cierre .precio-lanzamiento {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-acento);
  margin-top: 1rem;
}


/* 📱 Responsive ajustes */
@media screen and (max-width: 768px) {
  #comparativa .titulo-comparativa {
    font-size: 26px;
  }

  #comparativa .subtitulo-comparativa,
  .bloque-cierre {
    font-size: 17px;
  }

  .tabla-comparativa table {
    font-size: 16px;
  }

  .precio-lanzamiento {
    font-size: 22px;
  }

  .cta-texto {
    font-size: 18px;
  }

    #comparativa .container {
    width: 95% !important;
    padding: 0;
  }
}




/* Ajustes carrusel Swiper */
.faq {
  text-align: center;
}

.container_faq {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center; /* 🔧 centra visualmente el contenido interno */
}

.mySwiper {
  width: 80% !important;
  padding: 2rem !important;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.swiper-slide.card-dudas {
  box-sizing: border-box;
  background-color: transparent;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: #F57C00 !important;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 2;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
  color: #F57C00;
}

/* Ocultar flechas en pantallas pequeñas */
@media (max-width: 1023px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

.swiper-pagination-bullet {
  background-color: #F57C00 !important;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  background-color: #F57C00;
  opacity: 1;
}

.swiper-pagination {
  margin-top: 1rem;
}

.swiper-slide {
  margin-left: auto;
  margin-right: auto;
}

/* Tipografía dentro de las tarjetas del carrusel */
.swiper-slide {
  font-size: 1rem;
}

/* Ajuste para tablets */
@media screen and (max-width: 1024px) {
  .swiper-slide {
    font-size: 1.4rem;
  }

  .swiper-slide h3,
  .swiper-slide b,
  .swiper-slide strong {
    font-size: 1.5rem;
  }
}

/* Ajuste para celulares */
@media screen and (max-width: 768px) {
  .swiper-slide.card-dudas {
    padding: 1rem;
  }
  .swiper-slide {
    font-size: 1.3rem;
  }

  .swiper-slide h3,
  .swiper-slide b,
  .swiper-slide strong {
    font-size: 1.4rem;
  }
}



footer {
  background: linear-gradient(270deg, #FF5722, #FFA000, #F57C00, #ff511c);
  background-size: 800% 800%;
  animation: fondoAnimado 15s ease infinite;
  text-align: center;
  font-size: var(--font-size-small);
  padding: 2rem 1rem;
}

/* 🔽 Ocultar menú responsive por defecto */
.menu-responsive {
  display: none;
  flex-direction: column;
  justify-content: center;
  background-color: #121212;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  padding: 1rem;
  z-index: 999;
}

.menu-responsive a {
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contacto {
  background: linear-gradient(270deg, #1c1c1c, #080808, #1e1e1e, #0e0e0e);
  background-size: 800% 800%;
  animation: fondoAnimado 15s ease infinite;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

/* 🧠 Ajustes por tamaño de pantalla */
@media (max-width: 1050px) {
.section-title {
  font-size: 60px;
}

.hero-parrafo {
  font-size: 24px;
}

nav {
  padding:  1.2rem .5rem;
}

.nav-menu {
  display: none;
}

.nav-cta {
  display: block;
}

.nav-container {
  width: 98%;
}

.nav-logo img {
  height: 57px;
}

.card {
  margin-bottom: 1rem;
  width: 310px;
}

.card p {
  margin: 0.3rem 1.2rem 2rem 1.2rem;
}

.container_beneficios {
  width: 80%;
  padding: 0;
 
}
}


@media (max-width: 1200px) {
.mySwiper {
  width: 65% !important;
  padding: 3rem .5rem !important;
}

.section-title {
  font-size: 65px;
}

.hero-parrafo {
  font-size: 24px;
}

.nav-container {
  width: 85%;
}

.nav-logo img {
  height: 70px;
}

/* Estilos para los enlaces del menú */
.nav-menu a {
  font-size: .9rem;
  margin: 0 5px;
}

.btn-primary {
  padding: 0.5rem 1.0rem;
}

.container {
  width: 85%;
}

.card-dudas {
  width: 280px;
}
}

/* 🧠 Ajustes por tamaño de pantalla */
@media (max-width: 768px) {
  .mySwiper {
  width: 95% !important;
  padding: 3rem .2rem !important;
}

.hero {
  padding: 1rem .5rem 4rem;
  clip-path: ellipse(130% 80% at 50% 20%);
}

.btn-primary {
  padding: 0.3rem .5rem;
}

.section-title {
  font-size: 30px;
}

.hero-parrafo {
  font-size: 17px;
}

.imagen-hero {
  max-width: 90%;
}

nav {
  padding:  1.2rem .5rem;
}

.nav-menu {
  display: none;
}

.nav-cta {
  display: block;
}

.nav-container {
  width: 95%;
}

.nav-logo img {
  height: 55px;
}

.container {
  width: 100%;
}

.container_beneficios {
  width: 100%;
  padding: 0;
}

  .beneficio {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0 0rem;
  }

  .beneficio.izquierda {
    justify-content: flex-start;
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .beneficio.derecha {
    justify-content: flex-end;
    text-align: right;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .beneficio p {
    width: auto;
    flex: 1;
  }

  .circulo-num {
    width: 80px;
    height: 80px;
  }

  .circulo-num span {
    font-size: 38px;
  }
}

