/* Estilos base */
body {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  color: #f0f0f0;
  line-height: 1.6;
  background-color: #1f1b57;
  margin: 0;
  padding: 0;
}


/* Header con título */
header {
  background-color: #2a256e;
  color: #ffffff;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header .logo img {
  height: 100px;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.05);
}


/* Galería */
.galeria {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  padding: 20px;
  max-width: 95%;
  background-color: #2e2a66;
  color: #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.galeria button {
 background-color: #3d1d91;
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.galeria button:hover {
  background-color: #5e36bf;
}

.contenedor-fotos {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px;
  max-width: 85%;
  scrollbar-width: none;
}

.contenedor-fotos::-webkit-scrollbar {
  display: none;
}

.contenedor-fotos img {
  height: 220px;
  border-radius: 10px;
  flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.contenedor-fotos img:hover {
  transform: scale(1.05);
}

/* Texto bajo la galería */
.descripcion-productos {
  text-align: center;
  font-size: 20px;
  margin: 30px auto;
  max-width: 900px;
  color: #e0dfff;
  font-weight: 600;
}

/* Servicios */
.info-servicios {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color:#e4e2ff;
  margin: 30px auto 10px;
  padding: 10px 20px;
  max-width: 720px;
}

.info-servicios h3 {
  color: #d6ccff;
  margin-bottom: 20px;
}

.info-servicios ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}

.info-servicios li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 10px;
  max-width: 700px;
}

/* Contactos */
.contactos {
  background-color: #2e2a66;
  text-align: center;
  padding: 40px 20px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
}

.contactos h2 {
  color: #d6ccff;
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.iconos-contacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

}

.iconos-contacto a {
  text-decoration: none;
  color: #dcd8ff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.iconos-contacto a:hover {
  transform: scale(1.05);
  color: #ffffff;
}

.iconos-contacto img {
  height: 32px;
  width: 32px;
  transition: transform 0.3s ease;
}

.iconos-contacto img:hover {
  transform: rotate(10deg) scale(1.1);
}

/* Mapa */
.mapa {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  max-width: 900px;
  background-color:  #2e2a66;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mapa h2 {
  color: #002b5c;
}

.mapa iframe {
  max-width: 100%;
  border: 0;
  height: 400px;
  border-radius: 10px;
}

.mapa a {
  color: #00509e;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color:  #2e2a66;
  color:#dcd8ff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 50px;
  font-family: Arial, sans-serif;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer-contenido p {
  margin: 6px 0;
  font-size: 15px;
}

.footer-redes {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer-redes img {
  height: 28px;
  width: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-redes img:hover {
  transform: scale(1.2);
  filter: brightness(1) invert(0);
}

/* Imágenes fluidas en general */
img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE para móviles */
@media (max-width: 768px) {
  header .logo img {
    height: 70px;
  }

  header::after {
    font-size: 20px;
  }

  .galeria {
    flex-direction: column;
  }

  .contenedor-fotos {
    max-width: 100%;
    gap: 10px;
  }

  .contenedor-fotos img {
    height: 160px;
  }

  .galeria button {
    margin: 10px;
    font-size: 18px;
    padding: 10px;
  }

  .iconos-contacto {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .info-servicios li {
    max-width: 100%;
  }

  .footer-redes {
    flex-direction: column;
    gap: 12px;
  }

  .mapa iframe {
    height: 300px;
  }
}
