    * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        background: #f9f9f9;
        color: #333;
      }

      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;  
        background: #fff;
        color: #000;
        padding: 20px;
        text-align: left;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }

      header img {
        max-height: 60px;
        margin: 0 15px;
        vertical-align: middle;
      }

    .main-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background-color: #fff;
      flex-wrap: wrap;
    }

    .header-left img,
    .header-center img {
      max-height: 60px;
    }

    .header-right {
      font-size: 1.2em;
    }

    .header-right a {
      color: #000;
      text-decoration: none;
      font-weight: bold;
    }

    .header-right a:hover {
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .header-right {
        display: none;
      }
    }


    .whatsapp-contacto a {
      color: #000;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;   
    }

    .whatsapp-contacto a:hover {
      text-decoration: none;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 130px 20px;
    }

      .qr-popup {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #fff;
      padding: 10px;
      border: 2px solid #000;
      border-radius: 8px;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      max-width: 160px;
    }

    .qr-popup img {
      width: 100%;
      height: auto;
      display: block;
    }

    .qr-popup .close-btn {
      position: absolute;
      top: 2px;
      right: 5px;
      background: transparent;
      border: none;
      font-size: 18px;
      font-weight: bold;
      color: #000;
      cursor: pointer;
    }

    /* Ocultar en móviles (pantallas menores a 768px) */
    @media (max-width: 767px) {
      .qr-popup {
        display: none !important;
      } 
    }

    .intro {
      text-align: center;
      background-color: #e8f5e9;
      border-left: 5px solid #43a047;
      padding: 25px;
      margin-bottom: 30px;
      border-radius: 10px;
    }

    .intro h1 {
      font-size: 2em;
      color: #2e7d32;
    }

    .intro p {
      font-size: 1.1em;
      margin-top: 10px;
    }

    .features {
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      margin-bottom: 40px;
    }

    .features h2 {
      color: #2e7d32;
      margin-bottom: 15px;
    }

    .features ul {
      list-style: none;
      padding: 0;
    }

    .features ul li::before {
      content: '✔';
      color: #D60013;
      font-weight: bold;
      margin-right: 10px;
    }

    .features ul li {
      margin-bottom: 10px;
      font-size: 1em;
    }

    .download {
      text-align: center;
      background: #f1f8e9;
      padding: 25px;
      border-radius: 10px;
    }

    .download h3 {
      color: #33691e;
      margin-bottom: 15px;
    }

    .qr-section {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .qr-section img {
      max-width: 150px;
      border-radius: 10px;
    }

    footer {
      text-align: center;
      padding: 15px;
      background: #000;
      color: #fff;
      font-size: 0.9em;
    }








    

    
      
.hero-section {
  width: 100%;
  height: auto;
  background-image: linear-gradient(to left, #d60013, #a30022, #6d0b23, #390f1a, #000000);
  padding: 0;
  margin-top: 70px;    
  margin-bottom: 100px;    
}

.hero-content {
  display: flex;
  flex-direction: row;
  height: 100%;
  min-height: 500px;
  max-height: auto;
}

.hero-image {
  flex: 1;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: left;
  line-height: 1.2;
}

.hero-text h1 {
  font-size: 2.6em;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-align: center;    
}

.hero-text h2 {
  font-size: 1.6em;
  color: #E9E9E9;
  margin-bottom: 20px;
  text-align: center;    
}

.hero-text p {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #EBEBEB;
  line-height: 1.2;
}

.hero-text .brand {
  color: #F4F868;
}
      
.btn-descubrir {
  display: inline-block;
  background-color: #98000D;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.2em;
  font-weight: bold;    
  border: 2px solid #F4F868;
  border-radius: 8px;
  text-decoration: none;
  margin: 30px;
  transition: background-color 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.btn-descubrir:hover {
  background-color: #a30010;
}
        

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    text-align: center;
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-text h2 {
    font-size: 1.4em;
  }

  .hero-text p {
    font-size: 1em;
  }
}

      

      
      
      
      .hero-section1 {
  width: 100%;
  background-color: #000;
  padding: 40px 20px;
  color: #fff;
}

.hero-content1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image1 {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.hero-image1 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.hero-text1 {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
}

.hero-text1 h1, .hero-text1 h2 {
  margin: 10px 0;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.store-button {
  max-height: 60px;
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content1 {
    flex-direction: column;
  }

  .hero-text1 {
    text-align: center;
    padding: 20px;
  }

  .hero-text1 h1 {
    font-size: 2em;
  }

  .hero-text1 h2 {
    font-size: 1.4em;
  }

  .hero-text1 p {
    font-size: 1em;
  }
}
      
      
      
      
      
      
      
      
      
.features-section {
  padding: 0px 0px;
  background-image: linear-gradient(to right, #d60013, #a30022, #6d0b23, #390f1a, #000000);
  border-radius: 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); 
  padding: 0px;
}

.features-content {
  display: flex;
  align-items: stretch; 
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0; 
  margin: 0;
  padding: 0;
  min-height: 500px; 
}

.features-image {
  flex: 1;
  position: relative;
  min-height: 400px; 
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.features-image img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 100%; 
  max-width: 100%; 
  object-fit: contain;
  display: block;
}

.features-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px; 
}

.features-text h2 {
  color: #FFFFFF;
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.features-text ul {
  list-style: none;
  padding: 0;
}

.features-text ul li {
  position: relative;
  padding-left: 54px;
  margin-bottom: 12px;
  font-size: 1.5em;
  line-height: 1.2;
  font-family: 'Segoe UI', sans-serif;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
      
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}      


.features-text ul li::before {
  content: "✔";
  color: #F4F868;
  position: absolute;
  left: 25px;
  font-size: 1em;
  top: 2px;
}

/* Animaciones con delays */
.features-text ul li:nth-child(1) { animation-delay: 0.2s; }
.features-text ul li:nth-child(2) { animation-delay: 0.4s; }
.features-text ul li:nth-child(3) { animation-delay: 0.6s; }
.features-text ul li:nth-child(4) { animation-delay: 0.8s; }
.features-text ul li:nth-child(5) { animation-delay: 1.0s; }
.features-text ul li:nth-child(6) { animation-delay: 1.2s; }
.features-text ul li:nth-child(7) { animation-delay: 1.4s; }
.features-text ul li:nth-child(8) { animation-delay: 1.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .features-content {
    flex-direction: column;
    text-align: center;
  }

  .features-image {
    order: -1; /* pone la imagen arriba en móviles */
  }

  .features-image img {
    height: auto;
    object-fit: contain;
  }
}
      
      
      
      
      
      
      
      
      
      
      
      .dispositivos-section {
  background-image: linear-gradient(to bottom, #d60013, #a30022, #6d0b23, #390f1a, #000000);
 margin-top: 60px;          
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.dispositivos-section h2 {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 40px;
}

.dispositivos-section .brand {
  color: #F4F868;
}

.dispositivos-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}


.dispositivo {
  flex: 1 1 150px;
  max-width: 200px;
}
      

.dispositivo img {
  max-height: 80px;
  width: auto;
  display: block;
  margin: 0 auto 10px auto;
  object-fit: contain;
}

.dispositivo p {
  font-size: 0.7em;
  color: #fff;
  line-height: 1.1;
}


  .whatsapp-link {
  color: #fff;
  text-decoration: none;
}





.grilla-seccion {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  margin-top: 50px;
  margin-bottom: 50px;    
  border: 2px solid #C41928;
  border-radius: 8px;
}

.grilla-seccion h2 {
  font-size: 2em;
  color: #d60013;
  margin-bottom: 20px;
}

.botones-extra {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-mas {
  display: inline-block;
  background-color: #C41928;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.2em;
  font-weight: bold;    
  border: 2px solid #000;
  border-radius: 8px;
  text-decoration: none;
  margin: 30px;
  transition: background-color 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.btn-mas:hover {
  background-color: #a30010;
}
