html {
    scroll-behavior: smooth;
  }
  
  html,
  body {
    overflow-x: hidden;
  }
  
  /* ---------------------------
     Tipografía Global y Reset
  ---------------------------- */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfdfd;
    color: #333;
    line-height: 1.6;
    margin: 0;
  }
  
  /* ---------------------------
     Contenedor Principal
  ---------------------------- */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  section {
    padding: 60px 20px;
    text-align: center;
  }
  
  /* ---------------------------
     Navegación Principal
  ---------------------------- */
  .main-nav {
    background-color: #283593;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo-nav {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-links li {
    display: inline-block;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #f1c40f;
  }
  
  /* ---------------------------
     Hero Section
  ---------------------------- */
  .hero {
    background: linear-gradient(135deg, #3f51b5, #5c6bc0);
    color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: left;
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .hero-text {
    flex: 1 1 500px;
    margin-right: 40px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
  }
  
  .hero-image-container {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .hero-image {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
  }
  
  /* ---------------------------
     Botones
  ---------------------------- */
  .btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: #f1c40f;
    color: #283593;
  }
  
  .btn-primary:hover {
    background-color: #d4ac0d;
  }
  
  .btn-secondary {
    background-color: #283593;
    color: #fff;
    border: 2px solid #f1c40f;
  }
  
  .btn-secondary:hover {
    background-color: #f1c40f;
    color: #283593;
  }
  
  /* ---------------------------
     Secciones Claras y Oscuras
  ---------------------------- */
  .light-section {
    background: #f9f9f9;
    color: #333;
  }
  
  .dark-section {
    background: #111;
    color: #fff;
  }
  
  /* ---------------------------
     Contenido de Sección
  ---------------------------- */
  .section-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  
  .text-column,
  .image-column {
    flex: 1 1 500px;
    margin: 20px;
  }
  
  .text-column-light {
    color: #fff;
  }
  
  .section-image {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
  }
  
  .section-image-store {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
  }
  
  /* ---------------------------
     Reseñas
  ---------------------------- */
  .reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
  }
  
  .review {
    background: rgba(255, 255, 255, 0.07);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 280px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  }
  
  .review img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
  }
  
  /* ---------------------------
     CTA Final
  ---------------------------- */
  .final-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
  
  .cta-text {
    flex: 1 1 500px;
    margin: 20px;
  }
  
  .cta-text h2 {
    margin-bottom: 20px;
  }
  
  .cta-text p {
    margin-bottom: 30px;
    max-width: 500px;
  }
  
  .cta-image {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .cta-image img {
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* ---------------------------
     Footer
  ---------------------------- */
  footer {
    background: #000;
    color: #fff;
    padding: 20px 0;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-text {
    color: #fff;
    margin: 0;
  }
  
  .separator {
    margin: 0 10px;
    color: #fff;
  }
  
  .privacy-link {
    color: #fff;
    text-decoration: none;
  }
  
  .privacy-link:hover {
    text-decoration: underline;
  }
  
  .logo-footer {
    width: 100px;
    height: auto;
    margin-right: 20px;
  }
  
  /* ---------------------------
     Animaciones de Aparición
  ---------------------------- */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
  }
  
  .slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-in-out;
  }
  
  .slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-in-out;
  }
  
  .slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-in-out;
  }
  
  .show {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) !important;
  }
  
  /* ---------------------------
     Responsivo
  ---------------------------- */
  @media (max-width: 992px) {
    .hero-text h1 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
    .hero-text {
      margin-right: 0;
      margin-bottom: 40px;
    }
    .section-content {
      flex-direction: column;
      text-align: center;
      gap: 0;
    }
    .text-column,
    .image-column {
      margin: 10px 0;
    }
    section {
      padding: 10px 20px;
    }
    .final-cta {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .logo-nav {
      display: block;
      margin: 0 auto;
    }
    .hero-text h1 {
      font-size: 1.7rem;
    }
    .hero-text p {
      font-size: 1rem;
    }
    .btn {
      width: 100%;
      text-align: center;
    }
  }

  @media screen and (max-width: 600px) {
    .text-column * {
      font-size: 12px !important;
      text-align: left !important;
    }
  }

  /* ---------------------------
   General
---------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    color: #002752; /* Azul oscuro */
}

/* ---------------------------
   Containers y secciones
---------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    padding: 60px 20px;
}

/* ---------------------------
   Navegación y Hero
---------------------------- */
.main-nav {
    background-color: #0056b3;
    padding: 10px 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: linear-gradient(135deg, #0056b3 0%, #002752 100%);
    color: #ffffff;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 20px 0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background: #ffd60a;
    color: #002752;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
}

/* ---------------------------
   Secciones
---------------------------- */
.light-section {
    background: #ffffff;
    color: #002752;
}

.dark-section {
    background: #002752;
    color: #ffffff;
}

/* ---------------------------
   Footer
---------------------------- */
footer {
    background: #002752;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}
