/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Fuente global */
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #0e0825;
    color: white;
  }
  
  .hero-wrapper {
    background-image: url('media/Fotos e imagenes/fondo1.jpg');
    background-size: cover;
    background-position: center right; /* o top right */
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding: 40px 0 0px;
  }
  
  
  /* Navbar con fuente Roboto */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    /*margin-bottom: 60px;*/
  }
  
  .navbar .logo {
    width: 200px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    font-size: 15px;
  }
  
  /* Sección principal del hero */
  .hero-content {
    padding: 0px 12vw;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .text-content {
    max-width: 480px; 
    margin-left: 0;   
    padding-right: 30px;
  }
  
  h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .subheading {
    color: #ff007a;
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #12d6df, #ff00ba);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
    text-align: center;
  }

  .cta-button-basic {
    display: inline-block;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
  }
  
  .cta-button:hover {
    transform: scale(1.05);
  }
  
  .lead-alert-section {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 60px;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .image-container {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-container img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .image-container-top {
    flex: 1 1 800px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-container-top img {
    width: 100%;
    max-width: 800px;
    min-width: 200px;
    height: auto;
  }
  
  .text-container {
    flex: 1 1 500px;
    color: #000;
  }
  
  .text-container h2 {
    font-family: 'Poppins', sans-serif;
    color: #ff00ba;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .text-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #222;
  }
  
  /* Seccion problema */ 
  .problem-section {
    background-color: #000;
    color: #fff;
    padding: 80px 60px;
    font-family: 'Poppins', sans-serif;
  }
  
  .problem-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.4;
  }
  
  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }
  
  .image-column {
    flex: 1 1 390px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-column img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  
  .text-column {
    flex: 1 1 500px;
    color: #eee;
  }
  
  .text-column p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 1px 8vw;
  }
  
  .highlight-pink {
    color: #ff00ba;
    font-weight: 600;
  }
  
  .highlight-cyan {
    color: #12d6df;
    font-weight: 600;
  }
  
  /* Seccion solucion */
  .quote-banner {
    background-image: url('media/Fotos e imagenes/fondo2.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .quote-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    max-width: 900px;
  }

  /* Seccion beneficios */
  .benefit-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
    flex-wrap: wrap;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
  }
  
  .text-side {
    flex: 1 1 500px;
    color: #111;
  }
  
  .text-side h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ff00ba;
    margin-bottom: 40px;
    line-height: 1.4;
    padding-left: 40px;
  }
  
  .text-side p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
    padding-left: 40px;
  }
  
  .highlight-cyan {
    color: #12d6df;
    font-weight: 600;
  }
  
  .highlight-pink {
    color: #ff00ba;
    font-weight: 600;
  }
  
  .image-side {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-side img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  

  /* Seccion pasos */
  .steps-section {
    background-image: url('media/Fotos e imagenes/fondo2.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 40px;
    color: white;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .section-title h2 {
    font-size: 40px;
    color: #12d6df;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.4;
  }
  
  .step-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .circle {
    width: 40px;
    height: 40px;
    background-color: black;
    color: white;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .line {
    width: 280px;
    height: 2px;
    background-color: rgb(0, 0, 0);
  }
  
  .steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .step {
    flex: 1 1 250px;
    max-width: 300px;
  }
  
  .step img {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .step p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
  }
  


  /* Seccion testimonios */
  .testimonials-section {
    background-color: #f9f9f9;
    padding: 40px 40px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .testimonial-title h2 {
    font-size: 28px;
    color: #22a6f2;
    font-weight: 700;
    margin-bottom: 60px;
  }
  
  .testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
  }
  
  .testimonial {
    flex: 1 1 250px;
    max-width: 300px;
  }
  
  .video-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .video-thumbnail img {
    width: 100%;
    display: block;
  }
  
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
  }
  
  .testimonial h3 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
  }
  
  .testimonial p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }
  
  .testimonial-cta {
    margin-top: 40px;
  }
  
  .cta-button {
    background: linear-gradient(90deg, #12d6df, #ff00ba);
    color: white;
    padding: 15px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
    display: inline-block;
  }
  
  .cta-button:hover {
    transform: scale(1.05);
  }
  

  /* Seccion countdown */
  .countdown-section {
    background: #1c1c1c;
    color: white;
    text-align: center;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .time-box {
    background: #111;
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  
  .time-box span {
    font-size: 60px;
    font-weight: bold;
    display: block;
  }
  
  .time-box label {
    font-size: 14px;
    margin-top: 10px;
    display: block;
    color: #ccc;
    letter-spacing: 1px;
  }
  
  .countdown-text p {
    font-size: 22px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
  }
  
  .countdown-text .highlight {
    color: #ff00ba;
    font-weight: 600;
  }
  
  .countdown-cta .cta-button {
    background: linear-gradient(90deg, #12d6df, #ff00ba);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
  }
  
  .countdown-cta .cta-button:hover {
    transform: scale(1.05);
  }
  
  
  /* Seccion contacto */
  .closing-section {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 100px 20px 60px;
    font-family: 'Poppins', sans-serif;
  }
  
  .closing-title h2 {
    font-size: 32px;
    font-weight: 550; 
    margin-bottom: 40px;
  }  
  
  .closing-cta .cta-button {
    background: linear-gradient(90deg, #12d6df, #ff00ba);
    color: white;
    padding: 18px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
  }
  
  .closing-cta .cta-button .highlight {
    color: #ffff00;
  }
  
  .closing-cta .cta-button:hover {
    transform: scale(1.05);
  }
  
  .closing-logo {
    margin-top: 50px;
  }
  
  .closing-logo img {
    max-width: 200px;
  }
  
/* Media Querys para la version web */
@media (max-width: 1000px) {
  /* Navbar */
  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  /* Hero */
  .hero-content {
    flex-direction: column;
    padding: 0px 20px;
    text-align: center;
  }

  .text-content {
    padding-right: 0;
    margin: 0 auto;
    max-width: 100%;
  }

  h1 {
    font-size: 28px;
  }

  .subheading {
    font-size: 16px;
  }

  .description {
    font-size: 14px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }

  /* Lead alert section */
  .lead-alert-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .text-container h2 {
    font-size: 24px;
  }

  .text-container p {
    font-size: 16px;
  }

  /* Problem section */
  .problem-section {
    padding: 60px 20px;
  }

  .problem-section h2 {
    font-size: 28px;
  }

  .text-column p {
    font-size: 16px;
    padding: 0;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  /* Benefit section */
  .benefit-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .text-side h2 {
    font-size: 24px;
    padding-left: 0;
  }

  .text-side p {
    font-size: 14px;
    padding-left: 0;
  }

  /* Steps section */
  .step-numbers {
    flex-direction: column;
    gap: 10px;
  }

  .line {
    width: 80%;
    height: 2px;
  }

  .steps-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  /* Testimonials */
  .testimonial-title h2 {
    font-size: 22px;
  }

  .testimonial p {
    font-size: 14px;
  }

  .testimonials-grid {
    flex-direction: column;
    align-content: center;
    gap: 30px;
  }

  /* Countdown */
  .countdown {
    flex-direction: column;
    gap: 20px;
  }

  .time-box span {
    font-size: 40px;
  }

  .countdown-text p {
    font-size: 18px;
  }

  /* Closing section */
  .closing-title h2 {
    font-size: 24px;
  }

  .closing-cta .cta-button {
    width: 100%;
    font-size: 16px;
  }

  .closing-logo img {
    max-width: 120px;
  }
}

@media (max-width: 1000px) {
  .hero-wrapper {
    background-image: url('media/Fotos e imagenes/fondo1.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 40px 20px 0;
  }

  .text-column {
    flex: 1 1 100px;
  }

  .image-container-top {
    flex: 1 1 200px;
  }

  .hero-wrapper::before {
    display: none; /* Elimina el uso de pseudo-elemento */
  }

  .hero-content {
    position: relative;
    padding-top: 30px;
    z-index: 2;
  }

  .hero-image-mobile {
    display: block;
    text-align: center;
    margin-top: -20px;
  }

  .hero-image-mobile img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .navbar {
    position: relative;
    z-index: 3;
    padding: 0 20px;
  }

  /* Asegúrate de mostrar nav si se oculta */
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
  }

  .text-content h1 {
    font-size: 26px;
    text-align: center;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .step-numbers {
    display: none;
  }
}

@media (max-width: px) {
  .step-numbers {
    display: none;
  }
}

.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 60px;
}

.logo {
  width: 200px;
}

.navbar .nav-links {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  padding: 10px;
  text-decoration: none;
}

/* Ocultar el ícono en pantallas grandes */
.icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive */
@media screen and (max-width: 1000px) {
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .navbar.show .nav-links {
    display: flex;
  }

  .icon {
    display: block;
  }
}

/* Menú lateral */
.side-menu {
  height: 100%;
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  background-color: white;
  transition: 0.3s;
  z-index: 1100;
  padding-top: 60px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.side-menu a {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #eee;
}

.side-menu a:hover {
  background-color: #f4f4f4;
}

.side-menu .closebtn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
}

.overlay.active {
  display: block;
}

.contact-action-mobile {
    display: None;
}


/* RESPONSIVE */
@media screen and (max-width: 1000px) {
  .nav-links {
    display: none; /* Oculta los enlaces en móvil */
  }

  .icon {
    display: block; /* Muestra ícono hamburguesa */
  }

  .side-menu.open {
    left: 0;
  }

  .contact-action-desktop {
    display: None;
  }

  .contact-action-mobile {
      display: block;
  }

  .topnav {
    padding-left: 20px;
  }

  .section-title h2 {
    font-size: 25px;
  }

}

