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: #fff;
    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: #000;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-nav {
    width: 120px;
    height: auto;
}

.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: #FFB703;
}

/* ---------------------------
     Hero Section
  ---------------------------- */
.hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    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;
}

.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: #FFB703;
    color: #000;
}

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

.btn-secondary {
    background-color: #000;
    color: #fff;
    border: 2px solid #FFB703;
}

.btn-secondary:hover {
    background-color: #FFB703;
    color: #000;
}

/* ---------------------------
     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: 500px;
    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;
    /* Espacio entre el logo y el párrafo */
}

.footer-text {
    color: #fff;
    margin: 0;
}

.separator {
    margin: 0 10px;
    /* Espacio antes y después del | */
    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;
        /* elimina cualquier gap si fuera necesario */
    }

    .text-column,
    .image-column {
        margin: 10px 0;
        /* antes era 20px, ahora menos en mobile */
    }

    section {
        padding: 10px 20px;
        /* antes era 60px 20px */
    }

    .final-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Sección de Prueba Gratuita */
.trial-section {
  background: #fff;
  color: #222;
  padding: 4rem 0;
  text-align: center;
}

.trial-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.trial-badge {
  background: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid #FFB703;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.trial-days {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #FFB703;
}

.trial-text {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.trial-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #222;
}

.trial-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: #333;
}

.btn-trial {
  background-color: #FFB703;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.btn-trial:hover {
  background-color: #ffa100;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trial-highlight {
  color: #FFB703;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 1rem 0;
}

/* Sección Plataformas */
.platform-section {
  background: #f9f9f9;
  color: #222;
  padding: 60px 0 40px 0;
  text-align: center;
}
.platform-content {
  max-width: 900px;
  margin: 0 auto;
}
.platform-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.platform-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #444;
}
.platform-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 18px;
  padding: 18px 24px 10px 24px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  min-width: 120px;
  margin-bottom: 10px;
}
.platform-link span:last-child {
  margin-top: 10px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.platform-link:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 6px 24px rgba(255,183,3,0.13);
  color: #FFB703;
}
.platform-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.icon-web {
  background: #FFB703;
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-web-shape {
  width: 32px;
  height: 22px;
  border: 2.5px solid #222;
  border-radius: 6px;
  background: #fff;
  position: relative;
}
.icon-web-shape::after {
  content: '';
  position: absolute;
  left: 13px;
  bottom: -6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #222;
}

.icon-android {
  background: linear-gradient(135deg, #A4C639 80%, #fff 100%);
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-android-shape {
  width: 22px;
  height: 28px;
  background: #222;
  border-radius: 8px 8px 10px 10px / 10px 10px 16px 16px;
  position: relative;
}
.icon-android-shape::before, .icon-android-shape::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 8px;
  background: #222;
  border-radius: 2px;
  top: -7px;
}
.icon-android-shape::before {
  left: 2px;
  transform: rotate(-18deg);
}
.icon-android-shape::after {
  right: 2px;
  transform: rotate(18deg);
}
.icon-android-eyes {
  position: absolute;
  top: 8px;
  left: 6px;
  width: 10px;
  display: flex;
  justify-content: space-between;
}
.icon-android-eye {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.icon-android-antennas {
  display: none;
}

.icon-apple {
  background: #222;
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-apple-shape {
  width: 18px;
  height: 24px;
  background: #fff;
  border-radius: 50% 50% 40% 40% / 60% 60% 100% 100%;
  transform: rotate(-18deg);
  position: relative;
  left: 2px;
}
.icon-apple-leaf {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 60% 100% 100% 100%;
  position: absolute;
  left: 28px;
  top: 13px;
  transform: rotate(-18deg);
}
@media (max-width: 600px) {
  .platform-link {
    min-width: 90px;
    padding: 14px 0 8px 0;
  }
  .platform-icon-box, .icon-web, .icon-android, .icon-apple {
    width: 44px;
    height: 44px;
  }
}

.icon-img {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}