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

body {
  background: #00003b;
  color: #ffffff;
}

/* ---- Hero ---- */

#hero-circo {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-mobile {
  display: none;
}

.hero-bg-fallback {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-bg-fallback.is-visible {
  opacity: 1;
}

.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 40px 0;
}

.hero-logo {
  max-width: 480px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

.hero-top-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-top-right-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Botón dorado */

.btn-dorado {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #8b6914 0%, #b8860b 30%, #daa520 50%, #ffd700 70%, #ffa500 100%);
  padding: 14px 30px;
  border-radius: 8px;
  border-top: 3px solid #ffd700;
  border-bottom: 3px solid #ffd700;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5), 0 8px 25px rgba(184, 134, 11, 0.6);
  animation: flotar-dorado 3s ease-in-out infinite;
  transition: filter 0.3s ease;
}

.btn-dorado span {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #6b5010, 0 0 15px rgba(255, 215, 0, 0.6);
}

.btn-dorado::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  animation: brillo-dorado 3s ease-in-out infinite;
  z-index: 1;
}

.btn-dorado:hover {
  filter: brightness(1.1);
}

@keyframes flotar-dorado {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes brillo-dorado {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

.hero-fechas {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-fechas strong {
  display: block;
  color: #ffd700;
  font-size: 16px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
  text-align: right;
}

.hero-creditos {
  max-width: 1200px;
  width: 100%;
  height: auto;
}

/* Elementos exclusivos de móvil (ocultos en escritorio) */

.menu-toggle-mobile,
.hero-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .hero-bg-desktop { display: none; }
  .hero-bg-mobile { display: block; }

  /* En escritorio el logo, el botón, las fechas y la hamburguesa van
     juntos en .hero-top. En móvil se reparten por la pantalla, así que
     ocultamos ese bloque salvo el logo y usamos elementos propios. */
  .hero-top {
    padding: 0;
    justify-content: flex-start;
  }

  .hero-top-right {
    display: none;
  }

  .hero-logo {
    max-width: 340px;
    width: 95%;
    margin: 95px auto 0;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .hero-logo.is-visible {
    opacity: 1;
  }

  .hero-bottom {
    display: none;
  }

  .menu-toggle-mobile {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .menu-toggle-mobile.is-visible {
    opacity: 1;
  }

  .menu-toggle-mobile span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
  }

  .hero-mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 0 20px 20px;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .hero-mobile-cta.is-visible {
    opacity: 1;
  }

  .hero-mobile-cta .hero-fechas {
    text-align: center;
  }

  .btn-dorado-mobile {
    width: 100%;
    text-align: center;
  }
}

/* ---- Menú a pantalla completa ---- */

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background:
    radial-gradient(circle at 80% 15%, rgba(23, 195, 255, 0.25), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(153, 41, 114, 0.3), transparent 45%),
    linear-gradient(180deg, #0a1f4d 0%, #071438 55%, #030a1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 80% 10%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 60% 75%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 30% 85%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 45% 40%, rgba(255, 255, 255, 0.4), transparent);
  background-repeat: repeat;
  background-size: 320px 320px;
  pointer-events: none;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.mobile-menu-list {
  position: relative;
  list-style: none;
  text-align: center;
}

.mobile-menu-list li {
  margin: 22px 0;
}

.mobile-menu-list a {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 28px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
}

.mobile-menu-list a:hover {
  color: #ffd700;
}

/* ---- Sinopsis ---- */

.sinopsis {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
}

.sinopsis-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sinopsis-bg-mobile {
  display: none;
}

.sinopsis::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 40, 0.8) 0%, rgba(10, 10, 60, 0.6) 40%, rgba(60, 20, 90, 0.55) 100%);
  z-index: 1;
}

.sinopsis-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.sinopsis-logo {
  max-width: 340px;
  width: 100%;
  height: auto;
}

.sinopsis-titulo {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.sinopsis-separador {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.sinopsis-texto p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.sinopsis-texto p:last-child {
  margin-bottom: 0;
}

.btn-teaser {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #8b6914 0%, #b8860b 30%, #daa520 50%, #ffd700 70%, #ffa500 100%);
  color: #00003b;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5);
  transition: filter 0.3s ease;
}

.btn-teaser:hover {
  filter: brightness(1.1);
}

.btn-teaser-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #17c3ff;
  color: #ffffff;
  font-size: 11px;
}

/* Modal del teaser */

.teaser-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: rgba(0, 0, 20, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.teaser-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.teaser-modal-frame {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}

.teaser-modal-frame iframe {
  width: 100%;
  height: 100%;
}

.teaser-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .sinopsis-bg-desktop { display: none; }
  .sinopsis-bg-mobile { display: block; }

  .sinopsis {
    padding: 70px 20px;
  }

  .sinopsis-logo {
    max-width: 260px;
  }

  .sinopsis-titulo {
    font-size: 19px;
  }

  .sinopsis-separador {
    max-width: 160px;
  }
}

/* ---- Galería ---- */

.galeria {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(180deg, #050b30 0%, #0a1440 50%, #050b30 100%);
  overflow: hidden;
}

.galeria-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

.galeria-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.galeria-titulo {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0 2px 15px rgba(255, 215, 0, 0.4);
}

.galeria-subtitulo {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1px;
  margin-top: 12px;
}

.galeria-carousel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.galeria-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.galeria-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.galeria-item {
  flex: 0 0 calc((100% - 40px) / 3);
}

.galeria-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.galeria-arrow {
  flex: 0 0 auto;
  background: none;
  border: 2px solid #ffd700;
  color: #ffd700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}

.galeria-arrow:hover {
  background: #ffd700;
  color: #00003b;
}

.galeria-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.galeria-arrow:disabled:hover {
  background: none;
  color: #ffd700;
}

@media (max-width: 768px) {
  .galeria {
    padding: 55px 0;
  }

  .galeria-titulo {
    font-size: 30px;
  }

  .galeria-subtitulo {
    font-size: 15px;
  }

  .galeria-carousel {
    padding: 0 15px;
    gap: 8px;
  }

  .galeria-item {
    flex: 0 0 100%;
  }

  .galeria-item img {
    height: 240px;
  }

  .galeria-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* ---- Elenco ---- */

.elenco {
  position: relative;
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(180deg, #050b30 0%, #150a3a 50%, #050b30 100%);
  overflow: hidden;
}

.elenco-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.elenco-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 50px;
}

.elenco-titulo {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0 2px 15px rgba(255, 215, 0, 0.4);
}

.elenco-subtitulo {
  color: #ffffff;
  font-size: 17px;
  margin-top: 12px;
}

.elenco-panel {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(8, 8, 35, 0.55);
  border-radius: 24px;
  padding: 60px 40px;
}

.elenco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}

.elenco-card {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.elenco-card:hover {
  transform: scale(1.05);
}

.elenco-foto {
  display: block;
  width: 170px;
  height: 170px;
  margin-bottom: 18px;
}

.elenco-foto-inner {
  display: block;
  width: 100%;
  height: 100%;
}

.elenco-foto-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.elenco-nombre {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.elenco-rol {
  color: #ffffff;
  font-size: 14px;
}

@media (max-width: 900px) {
  .elenco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .elenco {
    padding: 55px 15px;
  }

  .elenco-titulo {
    font-size: 30px;
  }

  .elenco-panel {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .elenco-foto {
    width: 130px;
    height: 130px;
  }
}

/* Modal de ficha del elenco */

.elenco-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.elenco-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.elenco-modal-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a3e 0%, #0f0f2e 100%);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.elenco-modal-header {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #2d2d5f 0%, #1a1a3e 100%);
  border-bottom: 3px solid #ffd700;
  flex-shrink: 0;
}

.elenco-modal-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
}

.elenco-modal-title h2 {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 32px;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.elenco-modal-title p {
  color: #e0e0e0;
  font-size: 18px;
  font-style: italic;
}

.elenco-modal-body {
  padding: 40px;
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 16px;
  overflow-y: auto;
}

.elenco-modal-body p {
  margin-bottom: 18px;
}

.elenco-modal-body p:last-child {
  margin-bottom: 0;
}

.elenco-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #ffd700;
  font-size: 34px;
  cursor: pointer;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Artistas ---- */

.artistas {
  position: relative;
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(180deg, #050b30 0%, #150a3a 50%, #050b30 100%);
  overflow: hidden;
}

.artistas-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.artistas-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 50px;
}

.artistas-titulo {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0 2px 15px rgba(255, 215, 0, 0.4);
}

.artistas-subtitulo {
  color: #ffffff;
  font-size: 17px;
  margin-top: 12px;
}

.artistas-panel {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(8, 8, 35, 0.55);
  border-radius: 24px;
  padding: 60px 40px;
}

.artistas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 40px;
}

.artista-card {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.artista-foto {
  display: block;
  width: 240px;
  height: 240px;
  margin-bottom: 18px;
}

.artista-foto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.artista-nombre {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.artista-pais {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .artistas {
    padding: 55px 15px;
  }

  .artistas-titulo {
    font-size: 30px;
  }

  .artistas-panel {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .artista-card {
    flex: 0 0 180px;
  }

  .artista-foto {
    width: 180px;
    height: 180px;
  }
}

/* ---- Equipo Creativo ---- */

.equipo {
  position: relative;
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(180deg, #0a0a2e 0%, #1a0a3a 50%, #0a0a2e 100%);
  overflow: hidden;
}

.equipo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

.equipo-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 50px;
}

.equipo-titulo {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 42px;
  font-weight: 700;
  text-shadow: 0 2px 15px rgba(255, 215, 0, 0.4);
}

.equipo-panel {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.equipo-grid {
  display: grid;
  gap: 24px;
}

.equipo-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.equipo-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.equipo-card {
  border: 1px solid rgba(120, 140, 220, 0.5);
  border-radius: 6px;
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.equipo-card--morado {
  border-color: rgba(170, 90, 200, 0.6);
}

.equipo-rol {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}

.equipo-nombre {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .equipo-grid-4,
  .equipo-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .equipo {
    padding: 55px 15px;
  }

  .equipo-titulo {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .equipo-grid-4,
  .equipo-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ---- FAQs ---- */

.faqs {
  position: relative;
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(180deg, #050b30 0%, #0a1440 100%);
}

.faqs-header {
  text-align: center;
  margin-bottom: 50px;
}

.faqs-titulo {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 42px;
  font-weight: 700;
  text-shadow: 0 2px 15px rgba(255, 215, 0, 0.4);
}

.faqs-columnas {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.faqs-subtitulo {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #ffd700;
  border-radius: 50%;
  color: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.faq-icon::before {
  content: '+';
}

.faq-item[open] .faq-icon::before {
  content: '\2212';
}

.faq-body {
  padding: 0 4px 20px;
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.7;
}

.faq-body p {
  margin-bottom: 12px;
}

.faq-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faqs {
    padding: 55px 15px;
  }

  .faqs-titulo {
    font-size: 28px;
  }

  .faqs-columnas {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---- Footer ---- */

.footer-circo {
  position: relative;
  width: 100%;
  padding: 70px 20px 30px;
  overflow: hidden;
  text-align: center;
}

.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ffd700;
  color: #ffd700;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-icon:hover {
  background: #ffd700;
  color: #00003b;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-creditos {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-creditos a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-creditos a:hover {
  color: #ffd700;
}

@media (max-width: 768px) {
  .footer-circo {
    padding: 50px 15px 24px;
  }

  .footer-logo {
    max-width: 220px;
  }

  .footer-links {
    gap: 14px 20px;
  }
}

/* ---- Páginas de error ---- */

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 22px;
}

.error-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-bottom: 6px;
}

.error-codigo {
  font-family: 'Cinzel Decorative', 'Poppins', serif;
  color: #ffd700;
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 25px rgba(255, 215, 0, 0.4);
}

.error-titulo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.error-texto {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .error-codigo {
    font-size: 72px;
  }

  .error-titulo {
    font-size: 19px;
  }

  .error-logo {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .elenco-modal-header {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .elenco-modal-image {
    width: 120px;
    height: 120px;
  }

  .elenco-modal-title h2 {
    font-size: 24px;
  }

  .elenco-modal-body {
    padding: 24px 20px;
    font-size: 15px;
  }
}
