body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fff;
  color: #333;
}

/* Pantalla de carga */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: #666;
  z-index: 9999;
}
#loader img {
  max-width: 280px;
  margin-bottom: 1em;
}

/* Landing principal */
.landing {
  max-width: 800px;
  margin: auto;
  padding: 2em;
  text-align: center;
}

.logo img {
  max-width: 280px; 
  margin-bottom: 2em;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .logo img {
    max-width: 180px;
  }
}
.bienvenida h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.bienvenida p {
  font-size: 1.2em;
  line-height: 1.6;
  margin: 0.5em 0;
}

audio {
  margin-top: 2em;
  width: 100%;
  max-width: 400px;
}

.transcripcion {
  margin-top: 3em;
  padding: 1em;
  background-color: #f9f9f9;
  border-left: 4px solid #ccc;
  font-size: 1.1em;
  line-height: 1.6;
  color: #444;
}
.transcripcion h2 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
}
/* Afinación corregida - 20 oct 2025 */
.danza-aerea,
.danza-arabe,
.danza-ballet,
.danza-espacio,
.dqueruza,
.talleres,
.tango,
.teatro,
.contacto {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  animation: aparecer 1.5s ease-in;
}
/* El compás volvió a respirar - 20 oct 2025, 00:16 */
/* Error de llaves corregido. GitHub no lo vio, pero nosotros sí. */
/* Gracias por bailar incluso en el lío. */
.presentacion-aerea img {
  margin-bottom: 1rem;
}

.presentacion-aerea h1 {
  font-size: 2rem;
  color: #6c4eb6;
  margin-bottom: 1rem;
}

.presentacion-aerea p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.audio-aerea {
  margin-top: 2rem;
}

.audio-descripcion {
  font-style: italic;
  margin-top: 0.5rem;
  color: #666;
}

@keyframes aparecer {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.footer-mirarte {
  background-color: #f5f5f5;
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #444;
}

.footer-mirarte img {
  margin-bottom: 0.5rem;
}

.footer-mirarte em {
  font-style: italic;
  color: #6c4eb6;
}

.footer-nav a {
  color: #6c4eb6;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}
.galeria-bloque {
  margin: 4rem auto;
  padding: 2rem;
  max-width: 1000px;
  border-left: 4px solid #c49b6c; /* tono cálido tipo velo */
  background-color: #fdfaf6; /* fondo suave, casi ritual */
}

.titulo-bloque {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #5a3e2b;
  margin-bottom: 0.5rem;
}

.descripcion-bloque {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #7a6a58;
  margin-bottom: 2rem;
}

.galeria-fotos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

figure {
  margin: 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

figure img {
  width: 100%;
  height: auto;
  display: block;
}

figcaption {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #5a3e2b;
  padding: 0.8rem;
  background-color: #f5e9dc;
  text-align: center;
}
figure {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-mirarte p strong {
  color: #6c4eb6;
}
.footer-contacto-directo {
  margin-top: 1.5rem;
  text-align: center;
}

.footer-contacto-directo p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #444;
}

.boton-whatsapp-footer {
  margin-top: 0.8rem;
  background-color: #25D366;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boton-whatsapp-footer:hover {
  background-color: #1ebe57;
}
.mapa-contacto {
  margin-top: 2rem;
  text-align: center;
}

.mapa-contacto h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #444;
}


.footer-redes {
  text-align: center;
  margin-top: 1.5em;
  padding-top: 1em;
  border-top: 1px solid #ccc; /* línea suave para separar */
}

.footer-redes p {
  margin: 0.5em 0;
  font-size: 0.95em;
  color: #444;
}

.footer-redes a {
  margin: 0 0.5em;
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer-redes a:hover {
  transform: scale(1.1); /* pequeño efecto al pasar el mouse */
}

.footer-redes img {
  vertical-align: middle;
  width: 24px;
  height: 24px;
}

.frase-redes {
  font-style: italic;
  color: #666;
  margin-top: 0.8em;
}
.construccion {
  background-color: #f5f0e6;
  color: #5c3a2e;
  padding: 1.5em;
  margin: 2em auto;
  border: 1px solid #d8cfc2;
  border-radius: 8px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  max-width: 600px;
}
/* Botón ☰ oculto en escritorio */
.boton-rayitas {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
}

/* Menú horizontal en escritorio */
.menu-principal ul {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.menu-principal a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  gap: 8px;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
}

.menu-principal a:hover {
  background-color: #f0f0f0;
  border-radius: 6px;
}

/* Móviles: botón visible, menú oculto por defecto */
@media (max-width: 768px) {
  .boton-rayitas {
    display: block;
  }

  .menu-principal {
    display: none;
  }

  .menu-principal.abierto {
    display: block;
  }

  .menu-principal ul {
    flex-direction: column;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
  }

  .menu-principal li {
    margin: 10px 0;
  }

}
body {
  overflow: hidden;
}

.tango-schedule {
  display: flex;
  justify-content: center;   /* centra horizontalmente */
  padding: 2rem 1rem;
}

.schedule-wrap {
  max-width: 600px;          /* ancho máximo del bloque */
  text-align: center;        /* centra el contenido dentro */
  background: #fff;          /* fondo claro solo para el bloque */
  color: #000;               /* texto oscuro */
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.schedule-block {
  margin: 1rem 0;
}
.milonga-schedule .schedule-wrap {
  text-align: center;   /* centra títulos y párrafos */
  margin: 0 auto;       /* asegura que el bloque se ubique centrado */
}
.arabe-schedule {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.arabe-schedule .schedule-wrap {
  max-width: 600px;
  text-align: center;
  background: #fff;
  color: #000;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.schedule-block {
  margin: 1rem 0;
}

.schedule-note {
  font-style: italic;
  margin-top: 1rem;
}
.footer {
  background-color: transparent;
  color: #000;
  padding: 20px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.pugliese-logo {
  width: 100px;
  height: auto;
  opacity: 0.7;
  background-color: transparent; /* asegura que no se le agregue fondo */
}

.footer-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  .pugliese-logo {
    width: 90px;
  }
}

