/* =========================================================
   88 CYCLING - BUY FROM LATIN AMERICA
   ========================================================= */


/* =========================================================
   LANGUAGE
   ========================================================= */

html[lang="es"] .block-en {
  display: none;
}

html[lang="en"] .block-es {
  display: none;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.latam-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  line-height: 1.65;
}

.latam-page h1 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 18px;
  color: #111;
}

.latam-page h2 {
  font-size: 27px;
  line-height: 1.3;
  margin: 42px 0 22px;
  color: #111;
}

.latam-page h3 {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 7px;
  color: #111;
}

.latam-page p {
  font-size: 16px;
  margin: 0 0 18px;
}

.latam-page a {
  font-weight: 700;
  text-decoration: none;
}

.latam-page a:hover {
  text-decoration: underline;
}


/* =========================================================
   INTRO
   ========================================================= */

.latam-intro-section {
  margin: 0 0 20px;
}

.latam-subtitle {
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 22px !important;
}

.latam-intro {
  font-size: 17px !important;
  line-height: 1.7;
}


/* =========================================================
   HOW IT WORKS / STEPS
   ========================================================= */

.latam-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: latam-step;
}

.latam-steps > li {
  list-style: none;
  counter-increment: latam-step;
  position: relative;
  padding: 0 0 32px 78px;
  min-height: 55px;
}

.latam-steps > li::before {
  content: counter(latam-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #e60000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   BULLETS INSIDE STEPS
   ========================================================= */

.latam-steps > li > ul {
  margin: 14px 0 0;
  padding-left: 28px !important;
  list-style: disc outside !important;
}

.latam-steps > li > ul > li {
  display: list-item !important;
  list-style: disc outside !important;
  margin: 0 0 13px;
  padding-left: 4px;
}

.latam-steps > li > ul > li::marker {
  color: #222;
  font-size: 1em;
}


/* =========================================================
   GOOD TO KNOW / LO QUE DEBES SABER
   ========================================================= */

.latam-notes {
  margin: 0;
  padding-left: 28px !important;
  list-style: disc outside !important;
}

.latam-notes > li {
  display: list-item !important;
  list-style: disc outside !important;
  margin: 0 0 14px;
  padding-left: 4px;
}

.latam-notes > li::marker {
  color: #222;
  font-size: 1em;
}


/* =========================================================
   FAQ
   ========================================================= */

.latam-faq {
  border-top: 1px solid #ddd;
}

.latam-faq details {
  border-bottom: 1px solid #ddd;
  padding: 17px 0;
}

.latam-faq summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

.latam-faq details p {
  margin: 12px 0 0;
}


/* =========================================================
   MAIN WHATSAPP CTA
   ========================================================= */

.latam-cta {
  text-align: center;
  margin: 42px 0 20px;
}

.latam-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.latam-whatsapp-button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
  text-decoration: none !important;
}


/* =========================================================
   FLOATING WHATSAPP
   Este elemento sí debe quedar por encima
   ========================================================= */

.latam-whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.latam-whatsapp-float img {
  width: 30px;
  height: 30px;
  display: block;
}

.latam-whatsapp-float:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-in-out;
  text-decoration: none !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .latam-page {
    padding: 15px;
  }

  .latam-page h1 {
    font-size: 29px;
  }

  .latam-page h2 {
    font-size: 24px;
  }

  .latam-subtitle {
    font-size: 18px !important;
  }

  .latam-steps > li {
    padding-left: 62px;
  }

  .latam-steps > li::before {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .latam-steps > li > ul,
  .latam-notes {
    padding-left: 24px !important;
  }

  .latam-whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }
}