/* Reset básico y fuente */
body, html {
  height: 100%;
  margin: 0;
  color: #1075bd;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

/* LANDING BACKGROUND + DECORATIVO */
.landing {
  position: relative;
  background-image: url("/img/textura.png");
  background-repeat: no-repeat;
  background-position: top;

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10rem 1rem 4rem;
  gap: 4rem;
  overflow: hidden;
}

.landing::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background-image: url("/img/textura.png");
  background-repeat: no-repeat;
  background-position: bottom;
  transform: scaleY(-1);
  pointer-events: none;
  z-index: 0;
}

/* CAJAS DE CONTENIDO */
.content-box {
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
  max-width: 1100px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* COLUMNA DE TEXTO */
.text-side {
  text-align: justify;
  color: #1075bd;
  padding: 1rem 2rem;
}

/* ETIQUETA APERTURA */
#divEtiquetaApertura {
  width: 10rem;
  position: absolute;
  top: 28rem;
  right: 32rem;
  z-index: 10;
}
#divEtiquetaApertura > img {
  width: 140%;
}

/* LISTAS */
.ul-1 > li,
.ul-2 > li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #1075bd;
}

.ul-2 {
  margin-left: 15%;
}

h2, h3 {
  font-weight: 300;
  text-align: center;
}
h2 > strong, h3 > strong {
  font-weight: 700;
}

/* IMÁGENES DE ESCAPARATE */
.divImages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.divImages > img {
  width: 100%;
  max-width: 34.5rem;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* MAPA */
#mapsimg {
  width: 100%;
  max-width: 100rem;
  height: 25rem;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* ENLACES */
.enlacesFrontPage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
.enlace-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  font-size: 1.1rem;
}
.enlace-item .material-symbols-outlined {
  font-size: 1.5rem;
}

.btn-primary{
  color: white;
  background-color: #1075bd;
  width: 26%;
  margin: 0 auto;
  text-align: center;
  margin-top: 1rem;
}

/* RESPONSIVE: TABLET ↓ 992px */
@media (max-width: 992px) {
  .landing {
    padding-top: 6rem;
    gap: 3rem;
  }

  .text-side {
    padding: 1rem;
    text-align: center;
  }

  .ul-2 {
    margin-left: 0;
    padding-left: 1rem;
  }

  #divEtiquetaApertura {
    display: none;
  }

  #divEtiquetaApertura > img {
    width: 60%;
  }

  .btn-primary{
    width: 34%;
}

/* RESPONSIVE: MÓVIL ↓ 576px */
@media (max-width: 576px) {
  #divEtiquetaApertura {
    display: none;
  }

  .landing {
    padding-top: 4rem;
  }

  .ul-1 > li,
  .ul-2 > li {
    font-size: 1rem;
  }

  #mapsimg {
    height: 18rem;
  }

  .content-box {
    width: 100%;
    padding: 1.5rem;
  }

  .responsiveDiv{
    width: 100%;
  }

  h2, h3 {
    width: 62%;
    font-size: 1.2rem;
  }

  .enlace-item {
    font-size: 1rem;
  }

  .image-side {
    max-height: 14rem;
    object-fit: contain;
  }

  .btn-primary{
    width: 70%;
}
}
