/* ================================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================================
   VARIABLES DE COLOR
================================ */
:root {
  --turquesa: #00BBB4;
  --negro: #1D1D1B;
  --azul-petroleo: #0F4C5C;
  --blanco: #FFFFFF;
}

/* ================================
   BODY
================================ */
body {
  background: var(--turquesa);  /* fondo general turquesa */
  color: var(--negro);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

/* ================================
   HEADER
================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--blanco);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6%;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 110px;
  width: auto;
  object-fit: contain;
}

header h1 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blanco);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--blanco);
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--turquesa);
  transition: width 0.2s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--turquesa);
}

main {
  margin-top: 110px; /* para que no tape el header */
}

/* ================================
   SECCIONES GENERALES
================================ */
.section {
  padding: 80px 8%;
}

/* ================================
   BOTONES
================================ */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.btn-primary {
  background: var(--azul-petroleo);
  color: var(--blanco);
}

.btn-primary:hover {
  background: #083344;
}

.btn-secondary {
  background: var(--negro);
  color: var(--blanco);
}

.btn-secondary:hover {
  background: var(--azul-petroleo);
}

.btn-secondary-hero {
  background: transparent;
  color: var(--azul-petroleo);
  border: 2px solid var(--azul-petroleo);
}

.btn-secondary-hero:hover {
  background: var(--azul-petroleo);
  color: var(--blanco);
}

/* ================================
   INICIO 50/50
================================ */
.split-hero {
  display: flex;
  height: calc(100vh - 110px);
  padding: 40px 8%;
  gap: 40px;
}

/* IZQUIERDA: SEBA */
.col-nosotros {
  flex: 1;
  background: var(--blanco);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.foto-seba {
  width: 35%;
  border-radius: 25px;
  object-fit: center;
  margin-bottom: 6px;
}

/* DERECHA: HERO TURQUESA */
.col-hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.hero-content {
  background: #00BBB4;
  border-radius: 26px;
  padding: 40px 34px;
  color: var(--blanco);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.hero-logo {
  height: 400px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
  
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  line-height: 1.2;
}

.subtitulo-hero {
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-content p {
  font-size: 0.98rem;
}

.hero-buttons {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================================
   TÍTULOS GENERALES
================================ */
.titulo-seccion {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--negro);
}

/* ================================
   TALLERES (página talleres.html)
================================ */

/* Fondo gris clarito para separar la sección del resto */
.section-talleres {
  padding: 4rem 0;
  background-color: #e8ecef;
}

/* Bloque turquesa central donde viven las tarjetas */
.talleres-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #00a9a5; /* turquesa tipo flyer */
  padding: 3rem 3rem 3.2rem;
  box-sizing: border-box;
}

/* Header dentro del bloque turquesa */
.talleres-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  border-bottom: 4px solid #ffffff;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.talleres-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.3rem;
}

.talleres-title {
  font-size: 2.4rem;
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.talleres-subtitle {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.5;
  color: #e6ffff;
  margin: 0;
}

/* Botón “Reservá tu lugar” del header de talleres */
.btn-turq {
  background-color: #ffffff;
  color: #111111;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 3px solid #111111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 #111111;
}

.btn-turq:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #111111;
}

/* Grid de tarjetas dentro del bloque turquesa */
.talleres-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Tarjetas blancas CUADRADAS sobre el turquesa */
.taller-card {
  background-color: #f3f5f6;
  padding: 1.6rem 1.4rem 1.2rem;
  border: 3px solid #111111;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 0 !important; /* sí o sí cuadradas, aunque haya estilos generales */
}

.taller-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111111;
  margin: 0;
}

.taller-card-tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: #00a9a5;
  margin: 0 0 0.3rem;
}

.taller-card-body {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #222222;
  margin: 0;
}

.taller-card-footer {
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

/* “Cupos limitados” y link de reserva dentro de la tarjeta */
.badge-cupos {
  background-color: #ffe9e6;
  color: #b53021;
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0; /* también cuadrado */
}

.link-blanco {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #111111;
  padding: 0.4rem 0.7rem;
  background-color: #ffffff;
  border: 2px solid #111111;
  box-shadow: 3px 3px 0 #111111;
  border-radius: 0; /* cuadrado */
}

.link-blanco:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #111111;
}

/* Responsive */
@media (max-width: 1024px) {
  .talleres-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .talleres-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .talleres-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-talleres {
    padding: 3rem 0;
  }

  .talleres-wrapper {
    padding: 2.2rem 1.6rem 2.4rem;
  }

  .talleres-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   GALERÍA (página galeria.html)
================================ */
.galeria-section {
  background: transparent;
  color: var(--negro);
}

.galeria-header-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 0.98rem;
}

#galeria-contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

.galeria-anio-bloque {
  margin-bottom: 48px;
}

.galeria-anio-header {
  margin-bottom: 14px;
}

.galeria-anio-titulo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--negro);
  border-bottom: 2px solid rgba(0,0,0,0.12);
  padding-bottom: 6px;
}

.galeria-muestra {
  margin-top: 16px;
  margin-bottom: 26px;
}

.galeria-muestra-titulo {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--azul-petroleo);
  margin-bottom: 10px;
}

.galeria-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  padding: 18px 40px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.galeria-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.galeria-track::-webkit-scrollbar {
  height: 6px;
}
.galeria-track::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

.galeria-slide {
  flex: 0 0 min(280px, 70vw);
}

.galeria-img {
  width: 100%;
  height: 2000px;        /* << más alto */
  object-fit: contain;  /* << no corta las fotos, se ven completas */
  border: none;
  box-shadow: none;
  background: #000;     /* fondo detrás de la foto si “sobran” bordes */
}


.galeria-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.galeria-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--blanco);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--negro);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.galeria-btn:hover {
  background: var(--azul-petroleo);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.galeria-btn-prev {
  left: 10px;
}

.galeria-btn-next {
  right: 10px;
}

.galeria-error {
  text-align: center;
  color: #b00020;
  margin-top: 30px;
}

/* Modal de zoom */
.modal-galeria {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-galeria.visible {
  display: flex;
}

.modal-img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(0,0,0,0.7);
}

.modal-cerrar {
  position: absolute;
  top: 22px;
  right: 30px;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ================================
   FOOTER
================================ */
footer {
  margin-top: 50px;
  padding: 16px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.75);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  nav ul {
    gap: 18px;
  }

  .split-hero {
    flex-direction: column;
    height: auto;
  }

  .col-nosotros,
  .hero-content {
    min-height: auto;
  }

  .talleres-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  nav ul {
    gap: 12px;
    font-size: 0.9rem;
  }

  .section {
    padding: 60px 6%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .talleres-container {
    grid-template-columns: 1fr;
  }

  .galeria-carousel {
    padding-inline: 18px;
  }

  .galeria-btn {
    display: none; /* en mobile se navega por swipe */
  }
}
/* ==== SECCIÓN SEBA ==== */

.seccion-seba {
    background-color: var(--turquesa);
    padding: 50px 10%;
}

.seba-contenedor {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.seba-foto {
    width: 150px;
    height: auto;
    border: 8px solid #fff;
    background: white;
    object-fit: cover;
}

.seba-texto {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    max-width: 700px;
    text-align: justify;
}
/* ================================
   CONTACTO ESTILO FLYER
================================ */

.contacto-section {
    background: #ffffff;
    padding: 70px 20px;
    text-align: center;
}

.contacto-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contacto-section p {
    font-size: 17px;
    color: #444;
    margin-bottom: 30px;
}

.contacto-form {
    max-width: 600px;
    margin: auto;
    padding: 25px;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.btn-enviar {
    background: #008d87;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

/* ===== SECCIÓN SEBA ===== */

.seccion-seba {
    background-color: var(--turquesa);
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.seba-wrapper {
    width: 85%;
    max-width: 1300px;
}

.seba-card {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    padding: 40px;
    gap: 40px;
    align-items: flex-start;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform .2s ease, box-shadow .2s ease;
}

.seba-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.seba-img-container img {
    width: 380px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.seba-texto {
    max-width: 750px;
    font-size: 17px;
    line-height: 1.6;
    color: #222;
    text-align: justify;
}

.btn-instagram {
    display: inline-block;
    margin-top: 25px;
    background: #000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn-instagram:hover {
    background: #333;
}
/* ===== SOMBRAS GENERALES ===== */

.card, .taller-card, .galeria-card {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-radius: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover, .taller-card:hover, .galeria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* NAV MÁS MODERNO */
header {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: #000;
    backdrop-filter: blur(6px);
}


.logo-flyer {
    width: 200px;
    margin-bottom: 20px;
}

.titulo-flyer {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitulo-flyer {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.texto-flyer {
    font-size: 18px;
    max-width: 500px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.botones-flyer {
    display: flex;
    gap: 15px;
}

.btn-negro {
    background: #000;
    color: #fff !important;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
}

.btn-turquesa {
    background: #fff;
    color: #00a8a8 !important;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
}

/* ================================
   BIO COMPLETA DEBAJO DE LA SECCIÓN
================================== */

.bio-completa {
    background: #ffffff;
    padding: 60px 20px;
}

.bio-contenido {
    max-width: 900px;
    margin: auto;
    color: #222;
    font-size: 18px;
    line-height: 1.6;
}

.bio-titulo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.boton-bio {
    margin-top: 30px;
}
/* ======== Fondo general blanco para todas las secciones ======== */
body, main {
    background: #ffffff !important;
}
/* ================================
   CUPOS LIMITADOS – estilo flyer
================================ */

.cupos {
    font-weight: 700;
    font-size: 15px;
    color: #ffffff; 
    margin-bottom: 10px;
    background: #00a8a8;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid #00a8a8;
}
/* ============================
   SECCIÓN TALLERES – nuevo diseño
============================ */

.talleres-section {
    background: #ffffff;
    padding: 60px 40px;
}

.titulo-section {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #002b31;
}

/* GRID UNIFORME */
.talleres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

/* TARJETA CUADRADA, MODERNA */
.taller-card {
    background: #ffffff;
    padding: 15px;
    border: 5px solid #00b7b3;
    box-shadow: 0px 6px 22px rgba(0,0,0,0.12);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Efecto hover con estilo profesional */
.taller-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 32px rgba(0,0,0,0.18);
}

.taller-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #003b3f;
    margin-bottom: 5px;
}

/* Cupos limitados */
.cupos {
    font-weight: 700;
    font-size: 14px;
    color: #c0392b;
    background: #fdecea;
    border: 1px solid #e1b4b4;
    padding: 4px 10px;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* Subtítulo */
.taller-sub {
    font-size: 17px;
    font-weight: 600;
    color: #006a66;
    margin-bottom: 12px;
}

/* Descripción */
.taller-desc {
    flex-grow: 1;
    line-height: 1.55;
    color: #333;
    margin-bottom: 25px;
}

/* BOTÓN */
.btn-reservar {
    background: #0a818a;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    border-radius: 6px;
    font-weight: 700;
    transition: background .25s ease, transform .25s ease;
}

.btn-reservar:hover {
    background: #00b7b3;
    transform: scale(1.03);
}
/* =======================
   GALERÍA – ESTILO FLYER
======================= */

.galeria-section {
    padding: 50px;
    background: transparent;
}

.galeria-titulo {
    text-align: center;
    color: #002b31;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Carrusel principal */
.galeria-carrusel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.galeria-wrapper {
    display: flex;
    gap: 0;
    transition: transform 0.6s ease;
}

.galeria-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    cursor: pointer;
    border: none;
    box-shadow: none;
}

/* Botones izquierda / derecha */
.galeria-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #002b31;
    color: white;
    border: none;
    padding: 14px 18px;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.2s;
}

.galeria-btn:hover {
    opacity: 1;
    background: #00b7b3;
}

.prev { left: 10px; }
.next { right: 10px; }

/* =======================
   MODAL (ZOOM)
======================= */

.galeria-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 70px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 45px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #00b7b3;
}
/* ===== GALERÍA ESTILO FLYER ===== */

.galeria-section {
  padding: 60px 40px;
  background: #ffffff; /* fondo blanco estilo flyer */
}

.galeria-titulo {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #002b31;
  margin-bottom: 40px;
}

.galeria-anio {
  margin-bottom: 50px;
}

.galeria-anio-titulo {
  font-size: 26px;
  font-weight: 800;
  color: #003b3f;
  margin-bottom: 20px;
  border-bottom: 2px solid #00BBB4;
  display: inline-block;
  padding-bottom: 4px;
}

.galeria-muestra {
  margin-bottom: 30px;
}

.galeria-muestra-titulo {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

/* Carrusel por muestra */
.galeria-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: transparent;
}

.galeria-track {
  display: flex;
  transition: transform 0.6s ease;
}

.galeria-slide {
  flex: 0 0 100%;
}

.galeria-img {
  width: 100%;
  height: 1000px;        /* << más alto */
  object-fit: contain;  /* << no corta las fotos, se ven completas */
  border: none;
  box-shadow: none;
  background: #000;     /* fondo detrás de la foto si “sobran” bordes */
}

/* Botones */
.galeria-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.85;
}

.galeria-btn:hover {
  opacity: 1;
  background: #00BBB4;
}

.galeria-btn-prev { left: 10px; }
.galeria-btn-next { right: 10px; }

/* Modal zoom */
.modal-galeria {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-galeria.visible {
  display: flex;
}

.modal-img {
  max-width: 90%;
  max-height: 90%;
}

#modal-cerrar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
}
.galeria-carousel {
  position: relative;
  overflow: hidden;   /* importante para que se vea 1 a la vez */
  width: 100%;
  background: transparent;
}

.galeria-track {
  display: flex;
}

.galeria-slide {
  flex: 0 0 100%;     /* el JS también lo fuerza, pero acá acompaña */
}

.galeria-img {
  width: 100%;
  height: 800px;
  object-fit: contain;
  border: none;
  box-shadow: none;
  background: #000;
}
/* ===== FOOTER ESTILO FLYER ===== */

.site-footer {
  background: #ffffff;
  color: #111111;
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
  border-top: 4px solid #f0f0f0;
  margin-top: 4rem;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.footer-top {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo {
  max-width: 140px;
  height: auto;
}

.footer-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0.25rem 0 0.75rem;
}

.footer-email {
  display: inline-block;
  font-weight: 600;
  font-size: 1.1rem;
  color: #111111;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer-email:hover {
  color: #00a9a4; /* turquesa */
}

.footer-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 0.75rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #00a9a4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00a9a4;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.1rem;
}

.footer-social-btn:hover {
  background: #00a9a4;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  font-size: 0.75rem;
  color: #777777;
}

/* Responsive footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 1rem 2rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-email {
    font-size: 1rem;
  }
}
/* ---------- Sección Talleres ---------- */

.section-talleres {
  padding: 5rem 7vw 4rem;
  background-color: #f5f9f9;
}

/* Encabezado tipo "hero" pero más bajito */
.talleres-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.talleres-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #006f7a;
}

.talleres-title {
  font-size: 2.4rem;
  margin: 0 0 0.5rem;
  color: #001b1f;
}

.talleres-subtitle {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.6;
  color: #234047;
}

.talleres-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Botones, iguales que en Inicio */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background-color: #003b46;
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  background-color: transparent;
  color: #003b46;
  border-color: #003b46;
}

.btn-outline:hover {
  background-color: #003b46;
  color: #ffffff;
}

.btn-sm {
  padding: 0.5rem 1.4rem;
  font-size: 0.9rem;
}

/* Grid de tarjetas de talleres */
.talleres-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

/* Tarjeta */
.taller-card {
  background-color: #ffffff;
  border-radius: 1.3rem;
  border: 2px solid #00a7a3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  padding: 1.8rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.taller-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.1rem;
  color: #00272e;
}

.taller-etiqueta {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #007f7b;
}

.taller-descripcion {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #304047;
  margin: 0;
}

.taller-footer {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.badge-cupos {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background-color: #ffe4e1;
  color: #b4382b;
}

/* Responsive */
@media (max-width: 1024px) {
  .talleres-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section-talleres {
    padding: 4rem 6vw 3rem;
  }

  .talleres-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .talleres-title {
    font-size: 2rem;
  }

  .talleres-grid {
    grid-template-columns: 1fr;
  }
}
/* --------- Sección Talleres estilo banner --------- */

.section-talleres {
  padding: 4rem 0;
  background-color: #e8ecef; /* gris claro como base */
}

.talleres-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #00a9a5; /* turquesa tipo flyer */
  padding: 3rem 3rem 3.2rem;
  box-sizing: border-box;
}

/* Header dentro del bloque turquesa */

.talleres-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  border-bottom: 4px solid #ffffff;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.talleres-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.3rem;
}

.talleres-title {
  font-size: 2.4rem;
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.talleres-subtitle {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.5;
  color: #e6ffff;
  margin: 0;
}

/* Botón tipo banner, cuadrado */

.btn-turq {
  background-color: #ffffff;
  color: #111111;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 3px solid #111111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 #111111;
}

.btn-turq:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #111111;
}

/* Grid de tarjetas (todas dentro del bloque turquesa) */

.talleres-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Tarjeta cuadrada, sin bordes redondeados */

.taller-card {
  background-color: #f3f5f6;   /* gris claro tipo flyer */
  padding: 1.6rem 1.4rem 1.2rem;
  border: 3px solid #111111;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.taller-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111111;
  margin: 0;
}

.taller-card-tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: #00a9a5;
  margin: 0 0 0.3rem;
}

.taller-card-body {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #222222;
  margin: 0;
}

.taller-card-footer {
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

/* Badge y link tipo flyer inferior */

.badge-cupos {
  background-color: #ffe9e6;
  color: #b53021;
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.link-blanco {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #111111;
  padding: 0.4rem 0.7rem;
  background-color: #ffffff;
  border: 2px solid #111111;
  box-shadow: 3px 3px 0 #111111;
}

.link-blanco:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #111111;
}

/* Responsive */

@media (max-width: 1024px) {
  .talleres-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .talleres-wrapper {
    padding: 2.2rem 1.6rem 2.4rem;
  }

  .talleres-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .talleres-title {
    font-size: 2rem;
  }

  .talleres-grid {
    grid-template-columns: 1fr;
  }
}
/* Tarjetas de talleres 100% cuadradas */
.taller-card {
  border-radius: 0 !important;
}

/* Si querés, también cuadrados los botones y la placa de "Cupos limitados" */
.badge-cupos,
.link-blanco {
  border-radius: 0 !important;
}
/* ===== OVERRIDES FINALES – SECCIÓN TALLERES ===== */

/* Fondo general suave y título centrado (talleres.html) */
.talleres-section,
.section-talleres {
  background: #f5f7f8;
  padding: 80px 4%;
}

/* Contenedor de las tarjetas: grid 3 columnas tipo "Cursos disponibles" */
.talleres-section .talleres-container,
.section-talleres .talleres-container,
.talleres-section .talleres-grid,
.section-talleres .talleres-grid {
  max-width: 1150px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* Tarjeta blanca, CUADRADA, estilo flyer */
.talleres-section .taller-card,
.section-talleres .taller-card {
  position: relative;
  background: #ffffff;
  border-radius: 0; /* cuadrados, sin bordes redondeados */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 72px 32px 28px; /* arriba más grande por la franja */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Franja superior tipo “DISPONIBLE” */
.talleres-section .taller-card::before,
.section-talleres .taller-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: var(--turquesa);
}

/* Texto DISPO en la franja (igual para todos los talleres) */
.talleres-section .taller-card::after,
.section-talleres .taller-card::after {
  content: "DISPONIBLE";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Títulos y subtítulos del taller */
.talleres-section .taller-card h3,
.section-talleres .taller-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 10px;
}

.talleres-section .taller-card h4,
.section-talleres .taller-card h4 {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--turquesa);
  margin-bottom: 14px;
}

/* Texto descriptivo */
.talleres-section .taller-card p,
.section-talleres .taller-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: #333333;
}

/* “★ Cupos limitados” como detalle turquesa debajo del texto */
.talleres-section .taller-cupos,
.section-talleres .taller-cupos {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--turquesa);
}

/* Botón cuadrado similar al estilo del index */
.talleres-section .taller-btn-reserva,
.section-talleres .taller-btn-reserva {
  margin-top: 22px;
  align-self: center;
  padding: 10px 26px;
  background: var(--turquesa);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0;           /* cuadrado, no pill */
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.talleres-section .taller-btn-reserva:hover,
.section-talleres .taller-btn-reserva:hover {
  background: #00BBB4;
}

/* Responsive */
@media (max-width: 900px) {
  .talleres-section,
  .section-talleres {
    padding: 60px 4%;
  }

  .talleres-section .talleres-container,
  .section-talleres .talleres-container,
  .talleres-section .talleres-grid,
  .section-talleres .talleres-grid {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .talleres-section .taller-card,
  .section-talleres .taller-card {
    padding: 68px 22px 24px;
  }
}
/* ===== TÍTULO Y SUBTÍTULO DE TALLERES – estilo hero ===== */

.talleres-section .titulo-seccion,
.section-talleres .titulo-seccion {
  font-family: "Playfair Display", serif; /* igual que el hero */
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  color: var(--negro);
  margin-bottom: 10px;
}

.talleres-section .subtitulo-talleres,
.section-talleres .subtitulo-talleres {
  max-width: 720px;               /* para que no se vaya tan ancho */
  margin: 0 auto 40px;            /* centrado + espacio debajo */
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333333;
}
/* ===== HERO DE GALERÍA (título + menú de años) ===== */

.galeria-section {
  padding: 0 0 60px;
  background: #ffffff;
}

/* Banda superior turquesa, estilo similar al hero del inicio */
.galeria-hero {
  background: linear-gradient(90deg, #008d87, #00bbb4);
  padding: 48px 8% 28px;
  text-align: center;
  color: #ffffff;
}

/* Título con la misma onda del hero "Del juego nace la escena" */
.galeria-hero .galeria-titulo {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 18px;
}

/* Menú de años (tabs) */
.galeria-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin: 10px auto 0;
}

/* Botones de año */
.galeria-tab {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

/* Año activo */
.galeria-tab.active {
  color: #ffffff;
}

.galeria-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #ffffff;
}

/* Contenido de la galería más angosto y centrado */
#contenedor-muestras {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 8%;
}

/* Responsive */
@media (max-width: 768px) {
  .galeria-hero {
    /* más espacio arriba para que no lo tape el header */
    padding: 90px 6% 24px;
  }

  .galeria-hero .galeria-titulo {
    font-size: 2.1rem;
  }

  .galeria-tabs {
    gap: 1.2rem;
  }
}

/* --- Galería limpia sin fondo blanco --- */

.galeria-carousel {
  position: relative;
  overflow-x: auto;
  display: flex;
  gap: 1rem;
  scroll-behavior: smooth;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0;
}

.galeria-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.galeria-img {
  border-radius: 0;
  width: auto;
  height: 480px;
  object-fit: contain;
  cursor: pointer;
  background: #000;
}

.galeria-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--turquesa, #008d87);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.galeria-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.galeria-btn-prev { left: 8px; }
.galeria-btn-next { right: 8px; }

.galeria-muestra {
  margin-bottom: 3rem;
  text-align: center;
}

.galeria-muestra-titulo {
  font-weight: 700;
  color: #002e2d;
  margin-bottom: 1rem;
}
/* --- Reflexión de Seba (cuadrada, sin bordes redondeados) --- */
.reflexion-content {
  background: linear-gradient(135deg, var(--turquesa), #00a59e);
  border-radius: 0 !important; /* elimina bordes redondeados */
  padding: 40px 34px;
  color: var(--blanco);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  width: 100%;
}
/* =========================================
   TALLERES – estilo flyer moderno
========================================= */

.section-talleres {
  padding: 80px 6vw 70px;
  background: #f3f6f7;
}

.talleres-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  text-align: center;
  color: #002b31;
  margin-bottom: 0.4rem;
}

.talleres-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 0.98rem;
  color: #4b6267;
}

/* Grid flexible y centrado */
.talleres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  justify-items: center;
}

/* Tarjeta cuadrada, limpia, estilo flyer */
.taller-card {
  position: relative;
  background: #ffffff;
  border-radius: 0; /* cuadrado */
  border: 1px solid #dde5e7;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  padding: 2.4rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

/* Cinta superior “DISPONIBLE” tipo flyer */
.taller-card::before {
  content: "DISPONIBLE";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: var(--turquesa);
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

/* Tipos dentro de la tarjeta */
.taller-card-title {
  margin-top: 2.4rem; /* baja el título debajo de la cinta */
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #002b31;
}

.taller-card-tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: #008f8a;
}

.taller-card-body {
  font-size: 0.93rem;
  line-height: 1.6;
  color: #36474c;
}

.taller-card-footer {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

/* Cupos y botón: cuadrados, con toque turquesa/negro */
.badge-cupos {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  background: #ffe8e3;
  color: #b53021;
  border-radius: 0;
}

.link-blanco {
  padding: 0.65rem 1.5rem;
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  border: 2px solid #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.link-blanco:hover {
  background: #ffffff;
  color: #000;
}
/* =========================================
   GALERÍA – override final para slider
   (una foto por vez, con translateX)
========================================= */

.galeria-carousel {
  position: relative;
  overflow: hidden !important;   /* muestra solo una */
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.galeria-track {
  display: flex !important;
  gap: 0 !important;
  overflow: visible !important;
  transition: transform 0.6s ease !important;
}

.galeria-slide {
  flex: 0 0 100% !important;   /* cada slide ocupa todo el ancho */
  max-width: 100%;
}

.galeria-img {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: contain;
  background: #000; /* “escenario” negro detrás */
}

/* Flechas: dejamos las que ya tenés, por si otro bloque las pisa */
.galeria-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--turquesa, #008d87);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.galeria-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.galeria-btn-prev { left: 10px; }
.galeria-btn-next { right: 10px; }

@media (max-width: 768px) {
  .galeria-img {
    height: 360px;
  }
}
/* =========================================
   RESPONSIVE GENERAL – hasta 768px
   (teléfono)
========================================= */

@media (max-width: 768px) {

  /* HEADER / NAV */
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 5%;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
  }

  .section {
    padding: 60px 6%;
  }

  .logo-flyer {
    width: 170px;
  }

  .titulo-flyer {
    font-size: 30px;
  }

  .subtitulo-flyer {
    font-size: 18px;
  }

  .texto-flyer {
    font-size: 15px;
    max-width: 100%;
  }

  .botones-flyer {
    flex-wrap: wrap;
  }

  /* BIO DEBAJO DEL FLYER */
  .bio-completa {
    padding: 40px 18px 45px;
  }

  .bio-contenido {
    font-size: 0.95rem;
  }

  /* REFLEXIÓN */
  .reflexion-section {
    padding: 40px 18px 45px;
  }

  /* TALLERES */
  .talleres-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* GALERÍA */
  .galeria-img {
    height: 360px;
  }

  .galeria-btn {
    display: none;
  }

  /* HERO INICIO: columnas apiladas */
  .inicio-flyer {
    flex-direction: column;
    min-height: auto;
  }

  .inicio-flyer .inicio-col {
    padding: 24px 20px;
  }

  .foto-seba-flyer {
    height: auto;
  }
}

  /* TALLERES – ESTILO FLYER MODERNO */
  .section-talleres {
    padding: 60px 5vw 50px;
  }

  .talleres-title {
    font-size: 2.1rem;
  }

  .talleres-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.3rem;
    padding: 0 10px;
  }

  .talleres-grid {
    grid-template-columns: 1fr;      /* una tarjeta por fila */
    gap: 24px;
  }

  .taller-card
@media (min-width: 1025px) {
  .inicio-flyer {
    height: auto;
    align-items: flex-start;
  }

  .inicio-flyer .inicio-col.izquierda {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .bio-contenido {
    max-width: 420px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #222;
  }

  .bio-titulo {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
  }
}
/* =========================================
   HERO SEBA + ESCUELA (inicio)
========================================= */

.inicio-flyer {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 110px); /* alto de pantalla menos el header */
}

.inicio-flyer .inicio-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
}

/* IZQUIERDA: foto grande de Seba */
.inicio-flyer .izquierda {
  background: #ffffff;
  align-items: stretch;
}

.foto-seba-flyer {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DERECHA: bloque turquesa con texto */
.inicio-flyer .derecha {
  background: var(--turquesa);
  color: #ffffff;
}

.titulo-flyer {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 20px;
}

.subtitulo-flyer {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.texto-flyer {
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 26px;
}

.botones-flyer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================
   BIO COMPLETA DE SEBA
========================================= */

.bio-completa {
  background: #ffffff;
  padding: 60px 8% 70px;
}

.bio-contenido {
  max-width: 1100px;
  margin: 0 auto;
  color: #111;
  font-size: 0.98rem;
  line-height: 1.7;
}

.bio-titulo {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.boton-bio {
  margin-top: 24px;
}

/* =========================================
   REFLEXIÓN DE SEBA – FRANJA TURQUESA
========================================= */

.reflexion-section {
  background: var(--turquesa);
  color: #ffffff;
  padding: 52px 8% 60px;
}

.reflexion-content {
  max-width: 1100px;
  margin: 0 auto;
}

.reflexion-section .subtitulo-hero {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.reflexion-section p {
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.reflexion-section .hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================
   RESPONSIVE – móviles
========================================= */

@media (max-width: 768px) {
  .inicio-flyer {
    flex-direction: column;
    min-height: auto;
  }

  .inicio-flyer .inicio-col {
    padding: 24px 20px;
  }

  .foto-seba-flyer {
    height: auto;
  }

  .titulo-flyer {
    font-size: 1.9rem;
  }

  .texto-flyer {
    max-width: 100%;
  }

  .bio-completa {
    padding: 40px 18px 45px;
  }

  .bio-contenido {
    font-size: 0.95rem;
  }

  .reflexion-section {
    padding: 40px 18px 45px;
  }
}
/* =========================================
   FIX INICIO – Seba grande + bloque turquesa
========================================= */

.inicio-flyer {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  min-height: calc(100vh - 110px) !important;
}

.inicio-flyer .inicio-col {
  flex: 1 1 50% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 40px 60px !important;
}

/* IZQUIERDA: foto de Seba grande */
.inicio-flyer .izquierda {
  background: #ffffff !important;
}

.foto-seba-flyer {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
}

/* DERECHA: bloque turquesa con texto */
.inicio-flyer .derecha {
  background: var(--turquesa) !important;
  color: #ffffff !important;
}

.inicio-flyer .derecha .titulo-flyer,
.inicio-flyer .derecha .subtitulo-flyer,
.inicio-flyer .derecha .texto-flyer {
  color: #ffffff !important;
}

/* =========================================
   BIO COMPLETA DE SEBA – sección blanca
========================================= */

.bio-completa {
  background: #ffffff !important;
  padding: 60px 8% 70px !important;
}

.bio-contenido {
  max-width: 1100px !important;
  margin: 0 auto !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

/* =========================================
   REFLEXIÓN – franja turquesa completa
========================================= */

.reflexion-section {
  background: var(--turquesa) !important;
  color: #ffffff !important;
  padding: 52px 8% 60px !important;
}

.reflexion-content {
  max-width: 1100px !important;
  margin: 0 auto !important;
}

/* =========================================
   RESPONSIVE extra para Inicio/Bio/Reflexión
========================================= */

@media (max-width: 768px) {
  .inicio-flyer {
    flex-direction: column !important;
    min-height: auto !important;
  }

  .inicio-flyer .inicio-col {
    padding: 24px 20px !important;
  }

  .foto-seba-flyer {
    height: auto !important;
  }

  .bio-completa,
  .reflexion-section {
    padding: 40px 18px 45px !important;
  }

  .bio-contenido {
    font-size: 0.95rem !important;
  }
}
.galeria-audio {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.btn-musica {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-musica:hover {
  background: #fff;
  color: #000;
  box-shadow: 4px 4px 0 #000;
  transform: translate(-2px, -2px);
}

/* En mobile, que no quede enorme */  
@media (max-width: 768px) {
  .btn-musica {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}
.galeria-music-note {
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  max-width: 340px;
  margin: 10px auto 14px;
}
.boton-bio {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


