
:root {
  --content-width: 1100px;
  --mobile-spacing: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #121212;
  color: #fafafa;
  text-align: center;
}


/* HEADER */

.header {
  background: #2d2d2d;
  padding: 10px 48px;
  display: flex;
  align-items: center;
}

.header .logo {
  height: 32px;
  margin: 16px;
}


/* BANNER */

.banner {
  width: 100%;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: 100px auto 50px;
  font-size: 28px;
  font-weight: 600;
}


/* BOTONES */

.buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(40% - 48px);
  max-width: var(--content-width);
  margin: 20px auto;
}

.container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.container .row {
  flex: 1;
  max-width: 540px;
}

.buttons .btn1 {
  display: block;
  width: 100%;
}

.buttons .btn1 img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.buttons .btn {
  display: block;
  width: 100%;
}

.buttons .btn img {
  display: block;
  width: 50%;
  max-width: 540px;
  height: auto;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.buttons .btn img:hover,
.buttons .btn1 img:hover {
  transform: scale(0.95);
}


/* TEXTO INTRODUCTORIO */

.intro-text {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: 40px auto;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  text-align: justify;
}

.desktop-only {
  display: block;
}


/* LINK DEL CORREO */

.email-link {
  color: #3399ff;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.email-link:visited {
  color: #9b7dff;
}

.email-link:hover {
  color: #66b3ff;
}

.email-link:focus-visible {
  outline: 2px solid #66b3ff;
  outline-offset: 4px;
  border-radius: 2px;
}


/* DIVISORES */

.divider {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  height: 1px;
  background: #434343;
  margin: 70px auto;
}


/* MAPA EN IMAGEN */

.map-section {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: 0 auto;
}

.map-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 13px;
  opacity: 0.9;
}


/* TEXTO DE DETALLES */

.details-text {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: 40px auto;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  text-align: justify;
}

.details-text strong {
  font-weight: 700;
}


/* VIDEO */

.video {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 13px;
}


/* SECCIÓN DE MAPAS */

.maps-section {
  display: flex;
  flex-direction: column;
  gap: 70px;
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: 0 auto;
}

.map-card {
  width: 100%;
}

.map-title {
  margin: 0 0 24px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}


/* GOOGLE MAP */

.google-map {
  width: 100%;
}

.google-map iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 1px solid #434343;
  border-radius: 13px;
}


/* LINK PARA ABRIR GOOGLE MAPS */

.map-link {
  display: inline-block;
  margin-top: 18px;
  color: #3399ff;
  font-size: 15px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.map-link:visited {
  color: #9b7dff;
}

.map-link:hover {
  color: #66b3ff;
}

.map-link:focus-visible {
  outline: 2px solid #66b3ff;
  outline-offset: 4px;
  border-radius: 2px;
}


/* TEXTO FINAL */

.final-text {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: 20px auto 50px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  text-align: justify;
}


/* BOTÓN TÉRMINOS Y CONDICIONES */

.button-terms {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: 20px auto;
}

.terms-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #e4061f;
  color: #ffffff;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.terms-btn:hover {
  transform: scale(0.95);
}


/* PRODUCE */

.produce-text {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin: 20px auto 70px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
}


/* FOOTER */

.footer {
  padding: 20px 48px;
  background: #e4061f;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}

.footer p {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  line-height: 1.5;
}


/* TABLET Y MOBILE */

@media (max-width: 768px) {

  .header {
    justify-content: center;
    padding: 10px 0;
  }

  .banner-text {
    width: calc(100% - 48px);
    margin: 50px auto 30px;
    font-size: 16px;
  }


  /* BOTONES MOBILE */

  .buttons {
    width: calc(100% - 48px);
    margin: 20px auto;
  }

  .container {
    flex-direction: column;
    gap: 20px;
  }

  .container .row {
    width: 100%;
    max-width: none;
  }

  .buttons .btn1 img,
  .buttons .btn img {
    width: 100%;
    max-width: none;
  }


  /* TEXTO INTRODUCTORIO MOBILE */

  .intro-text {
    width: calc(100% - 48px);
    margin: 30px auto;
    font-size: 12px;
  }

  .intro-text.desktop-only {
    display: block;
  }

  .email-link {
    overflow-wrap: anywhere;
  }


  /* DIVISORES MOBILE */

  .divider {
    width: calc(100% - 48px);
    margin: 45px auto;
  }


  /* MAPA EN IMAGEN MOBILE */

  .map-section {
    width: calc(100% - 48px);
  }

  .map-img {
    width: 100%;
  }


  /* DETALLES MOBILE */

  .details-text {
    width: calc(100% - 48px);
    margin: 30px auto;
    padding: 0;
    font-size: 12px;
  }


  /* VIDEO MOBILE */

  .video {
    width: calc(100% - 48px);
  }


  /* MAPAS MOBILE */

  .maps-section {
    width: calc(100% - 48px);
    gap: 50px;
  }

  .map-title {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .google-map iframe {
    height: 400px;
  }

  .map-link {
    margin-top: 15px;
    font-size: 12px;
  }


  /* TEXTO FINAL MOBILE */

  .final-text {
    width: calc(100% - 48px);
    margin: 20px auto 40px;
    padding: 0;
    font-size: 12px;
  }


  /* TÉRMINOS MOBILE */

  .button-terms {
    width: calc(100% - 48px);
    margin: 20px auto;
  }

  .terms-btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
  }


  /* PRODUCE MOBILE */

  .produce-text {
    width: calc(100% - 48px);
    margin: 20px auto 50px;
    padding: 0;
    font-size: 12px;
  }


  /* FOOTER MOBILE */

  .footer {
    padding: 10px 24px;
    font-size: 8px;
  }
}
```
