
/* === Estilos generales (escritorio) === */
body {
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 0.5em;
}

.section-title {
  text-align: center;
  font-size: 1.2em;
  margin: 1.5em 0 0.5em;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.3em;
  display: flex;
  flex-direction: row;
}

ul {
  width: 45%;
  padding: 0;
  text-align: left;
  list-style-position: inside;
  margin: 0;
}

li {
  font-size: 20px;
}

.construction,
.construction-text {
  text-align: center;
  color: #666;
}

.construction {
  font-size: 30px;
}

.construction-text {
  font-size: 20px;
  margin: 1em 0 1.5rem;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  
}

.section-num,
.section-title-num,
.section-title-mail {
  display: flex;
  flex-direction: row;
  font-size: 20px;
}

.section-lista>p,
.section-contacto>p {
  color: #0FAF4B;
  font-size: 25px;
}

.more-info {
  text-align: center;
  margin-top: 2em;
}

.more-info a,
.contact a {
  text-decoration: none;
  color: #0066cc;
}

.more-info a:hover,
.contact a:hover {
  text-decoration: underline;
}

.footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.columnas {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 3rem;
}

.correos>ul,
.numeros>ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-left: 1rem;
}

.logo-pag {
  margin-top: 3rem;
}

.text-click {
  font-size: 25px;
  margin-bottom: 2rem;
}

.foto-alcosur {
  margin: 2rem 1rem 0 0;
}

.imagen-mail {
  margin-left: 2rem;
}



/* === Breakpoint: Móviles (≤767px) === */
@media (max-width: 767px) {

  /* Ajuste de tipografías */
  h1 {
    font-size: 1.5em;
  }

  body {
    font-size: 0.9rem;
  }

  li {
    font-size: 18px;
  }

  .construction {
    font-size: 24px;
  }

  .construction-text, .columnas {
    font-size: 16px;
  }

  .section-title,
  .section-num,
  .section-title-num,
  .section-title-mail {
    font-size: 1em;
    flex-direction: column;
  }

  /* Espaciados más reducidos */
  .container {
    padding: 10px;
    margin: 0 10px;
  }

  .section-title {
    margin: 1em 0;
  }

  /* Flex a columna */
  .contact,
  .footer,
  .columnas {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .columnas > ul{
    align-items: center;
    width: 100%;
    margin-left: 2rem;
  }

  /* Imágenes fluidas */
  .logo-pag img,
  .footer img,
  .columnas img {
    max-width: 80%;
    height: auto;
    margin-bottom: 1rem;
  }

  /* Texto y enlaces */
  .text-click {
    font-size: 20px;
  }
  .imagen-mail {
    margin-top: 1rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
  .foto-alcosur {
    margin: 0;
  }
  .imagen-telef {
    margin-top: 1rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }


}