/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ec4899;
  padding: 1rem 2rem;
  color: white;
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #facc15;
}

/* Botón hamburguesa */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-btn .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  display: block;
}

/* Menú móvil */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #db2777;
  text-align: center;
}

.mobile-menu a {
  padding: 1rem;
  border-bottom: 1px solid #ec4899;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
}

.mobile-menu.show {
  display: flex;
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 1rem 2rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 0;
  margin: 0;
}

.breadcrumbs li a {
  text-decoration: none;
  color: #ec4899;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #ec4899;
  font-weight: 800;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #4b5563;
}

h2 {
  text-align: center;
  color: #a855f7;
}


h3 {
  color: #4b5563; /* Gris oscuro, no negro intenso */
  text-align: center; /* Centrado opcional */
  margin: 8px 0; /* Espacio arriba y abajo */
  font-size: 1.1rem; /* Tamaño moderado */
  font-weight: 800; /* Para que se vea más sutil */
}

/* Imagen central */
.hero-img {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-img img {
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  max-width: 100%;
  height: auto;
}

/* Mini-snippets */
.snippets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.snippet {
  background-color: #f3f4f6;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.snippet h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.snippet p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #4b5563;
}

/* Footer */
footer {
  background-color: #ec4899;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Contenedor de links */
.footer-links {
  display: flex;
  justify-content: center; /* Centra los enlaces */
  gap: 1.5rem; /* Espacio entre enlaces */
  margin-bottom: 0.5rem;
}

/* Estilo de los enlaces */
.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffd1ec; /* Color al pasar el mouse */
}

/* Animaciones */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
}


/* ================== GALERÍA ================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto 3rem;
  padding: 0 1rem;
}

.gallery-item {
  background-color: #f3f4f6;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Cuadradas */
  object-fit: cover; /* Recorta sin deformar */
  display: block;
}

.gallery-item p {
  padding: 0.5rem 1rem 1rem;
  font-size: 1rem;
  color: #1f2937;
}

/* Hero para Galería */
.hero-gallery {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #ec4899;
  color: white;
}

.hero-gallery h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

.hero-gallery p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #fce7f3;
}

/* Responsive Galería */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr; /* una columna */
    gap: 1rem;
  }

  .gallery-item p {
    font-size: 0.9rem;
  }

  .hero-gallery h1 {
    font-size: 2rem;
  }

  .hero-gallery p {
    font-size: 1rem;
  }
}



.texto-centrado {
  text-align: center;
  margin: 1em 0;
  font-size: 1.2em;
}


/* Sección de Política de Privacidad */
.privacidad {
  max-width: 900px;        /* Ancho máximo para lectura cómoda */
  margin: 2rem auto;       /* Centrado horizontal y espacio superior/inferior */
  padding: 2rem;           /* Espacio interno */
  background-color: #fff;  /* Fondo blanco */
  color: #333;             /* Texto oscuro para buena legibilidad */
  border-radius: 10px;     /* Bordes redondeados */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Sombra suave */
  line-height: 1.6;        /* Mejor lectura del texto */
  font-family: 'Arial', sans-serif;
}

.privacidad h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ec4899; /* Mantener el color de tu branding */
  text-align: center;
}

.privacidad h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #ec4899;
}

.privacidad p {
  margin-bottom: 1rem;
}

.privacidad ul {
  margin: 1rem 0 1rem 1.5rem; /* Sangría para listas */
  list-style-type: disc;
}

.privacidad a {
  color: #ec4899;
  text-decoration: none;
  transition: color 0.3s;
}

.privacidad a:hover {
  color: #ffb1dc;
}

/* Responsive para móviles */
@media (max-width: 600px) {
  .privacidad {
    padding: 1rem;
    margin: 1rem;
  }

  .privacidad h1 {
    font-size: 1.5rem;
  }

  .privacidad h2 {
    font-size: 1.2rem;
  }
}


/* Sección Quiénes Somos */
.quienes-somos {
  max-width: 900px;        /* Ancho máximo para lectura cómoda */
  margin: 2rem auto;       /* Centrado horizontal y espacio superior/inferior */
  padding: 2rem;           /* Espacio interno */
  background-color: #fff;  /* Fondo blanco */
  color: #333;             /* Texto oscuro para buena legibilidad */
  border-radius: 10px;     /* Bordes redondeados */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Sombra suave */
  line-height: 1.6;        /* Mejor lectura del texto */
  font-family: 'Arial', sans-serif;
}

.quienes-somos h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ec4899; /* Mantener color del branding */
  text-align: center;
}

.quienes-somos h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #ec4899;
}

.quienes-somos p {
  margin-bottom: 1rem;
}

.quienes-somos a {
  color: #ec4899;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.quienes-somos a:hover {
  color: #ffb1dc;
}

/* Responsive para móviles */
@media (max-width: 600px) {
  .quienes-somos {
    padding: 1rem;
    margin: 1rem;
  }

  .quienes-somos h1 {
    font-size: 1.5rem;
  }

  .quienes-somos h2 {
    font-size: 1.2rem;
  }
}