/* Piano Bar Medellín - Estilos */
/* Colores: #172c21 (verde oscuro), #d8b178 (dorado) */

/* Fuente Canela */
@font-face {
  font-family: 'Canela';
  src: url('Canela-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-fondo: #172c21;
  --color-dorado: #d8b178;
  --color-dorado-hover: #c29d5f;
  --color-blanco: #ffffff;
  --color-gris-claro: #f5f5f5;
  --fuente-principal: 'Canela', Georgia, serif;
  --sombra: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transicion: all 0.3s ease;
}

body {
  font-family: var(--fuente-principal);
  background-color: var(--color-fondo);
  color: var(--color-dorado);
  line-height: 1.6;
  overflow-x: hidden;
}

.app {
  min-height: 100vh;
}

/* Header y Navegación */
.header {
  background-color: rgba(23, 44, 33, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo h1 {
  color: var(--color-dorado);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu li a {
  color: var(--color-dorado);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transicion);
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-menu li a:hover {
  color: var(--color-blanco);
  background-color: rgba(216, 177, 120, 0.1);
}

.nav-menu li a.btn-reserva {
  background-color: var(--color-dorado);
  color: var(--color-fondo);
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
}

.nav-menu li a.btn-reserva:hover {
  background-color: var(--color-dorado-hover);
  transform: translateY(-2px);
  box-shadow: var(--sombra);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-dorado);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
  background: linear-gradient(135deg, #172c21 0%, #1a3d2e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(216, 177, 120, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.hero-title {
  font-size: 4rem;
  color: var(--color-dorado);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--color-dorado);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(216, 177, 120, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Botones */
.btn-primary,
.btn-secondary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transicion);
  font-family: var(--fuente-principal);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--color-dorado);
  color: var(--color-fondo);
}

.btn-primary:hover {
  background-color: var(--color-dorado-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(216, 177, 120, 0.4);
}

.btn-primary:disabled {
  background-color: #8a8a8a;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-dorado);
  border: 2px solid var(--color-dorado);
}

.btn-secondary:hover {
  background-color: var(--color-dorado);
  color: var(--color-fondo);
}

/* Contenedor general */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Títulos de sección */
.section-title {
  font-size: 2.5rem;
  color: var(--color-dorado);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(216, 177, 120, 0.8);
  margin-bottom: 3rem;
}

/* Sección Video */
.seccion-video {
  background-color: #1a3526;
  padding: 4rem 0;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.video-wrapper video,
.video-piano-bar {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .video-wrapper {
    max-width: 100%;
    border-radius: 10px;
  }
}

/* Sección Shows */
.seccion-shows {
  padding: 4rem 0;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.show-card {
  background: linear-gradient(135deg, #1a3526 0%, #172c21 100%);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--sombra);
  transition: var(--transicion);
  border: 1px solid rgba(216, 177, 120, 0.2);
  display: flex;
  gap: 1.5rem;
}

.show-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(216, 177, 120, 0.2);
}

.show-fecha {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-dorado);
  color: var(--color-fondo);
  border-radius: 10px;
  padding: 1rem;
  min-width: 80px;
}

.fecha-dia {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.fecha-mes {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.show-info {
  flex: 1;
}

.show-info h3 {
  color: var(--color-dorado);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.show-fecha-completa,
.show-horario {
  color: rgba(216, 177, 120, 0.8);
  margin-bottom: 0.5rem;
}

.show-estado {
  margin-top: 1rem;
}

.estado-disponible {
  color: #4ade80;
  font-weight: 600;
}

.estado-agotado {
  color: #ef4444;
  font-weight: 600;
}

.estado-cargando {
  color: rgba(216, 177, 120, 0.6);
  font-style: italic;
}

/* Sección Ubicación */
.seccion-ubicacion {
  background-color: #1a3526;
  padding: 4rem 0;
}

.ubicacion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.ubicacion-info h3 {
  color: var(--color-dorado);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.ubicacion-direccion,
.ubicacion-horario {
  color: rgba(216, 177, 120, 0.9);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.ubicacion-mapa {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--sombra);
}

/* Sección Menú */
.seccion-menu {
  padding: 4rem 0;
  text-align: center;
}

/* Sección Reservas */
.seccion-reservas {
  background-color: #1a3526;
  padding: 4rem 0;
  min-height: 100vh;
}

/* Indicador de pasos */
.pasos-indicador {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
}

.pasos-indicador::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(216, 177, 120, 0.3);
  z-index: 0;
}

.paso {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.paso-numero {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(216, 177, 120, 0.2);
  color: var(--color-dorado);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: var(--transicion);
  border: 2px solid transparent;
}

.paso.activo .paso-numero {
  background-color: var(--color-dorado);
  color: var(--color-fondo);
  border-color: var(--color-dorado);
}

.paso.completado .paso-numero {
  background-color: #4ade80;
  color: white;
  border-color: #4ade80;
}

.paso-texto {
  font-size: 0.9rem;
  color: rgba(216, 177, 120, 0.7);
  text-align: center;
}

.paso.activo .paso-texto {
  color: var(--color-dorado);
  font-weight: 600;
}

/* Mensajes */
.mensaje {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}

.mensaje-error {
  background-color: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #fca5a5;
}

.mensaje-exito {
  background-color: rgba(74, 222, 128, 0.2);
  border: 1px solid #4ade80;
  color: #86efac;
}

.mensaje-info {
  background-color: rgba(59, 130, 246, 0.2);
  border: 1px solid #3b82f6;
  color: #93c5fd;
}

/* Formulario de reserva */
.formulario-reserva {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a3526 0%, #172c21 100%);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(216, 177, 120, 0.2);
}

.paso-form h3 {
  color: var(--color-dorado);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--color-dorado);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid rgba(216, 177, 120, 0.3);
  border-radius: 8px;
  background-color: rgba(23, 44, 33, 0.5);
  color: var(--color-dorado);
  font-family: var(--fuente-principal);
  font-size: 1rem;
  transition: var(--transicion);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-dorado);
  background-color: rgba(23, 44, 33, 0.8);
}

.form-group input::placeholder {
  color: rgba(216, 177, 120, 0.5);
}

/* Resumen de precio */
.resumen-precio {
  background-color: rgba(216, 177, 120, 0.1);
  border: 2px solid var(--color-dorado);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}

.resumen-precio p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.resumen-precio strong {
  color: var(--color-dorado);
  font-size: 1.5rem;
}

.precio-detalle {
  font-size: 0.95rem;
  color: rgba(216, 177, 120, 0.7);
}

/* Resumen de reserva */
.resumen-reserva {
  background-color: rgba(216, 177, 120, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.resumen-reserva h4 {
  color: var(--color-dorado);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.resumen-reserva p {
  margin-bottom: 0.5rem;
  color: rgba(216, 177, 120, 0.9);
}

/* Métodos de pago */
.metodos-pago {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.metodo-pago {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 2px solid rgba(216, 177, 120, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transicion);
  background-color: rgba(23, 44, 33, 0.3);
}

.metodo-pago:hover {
  border-color: var(--color-dorado);
  background-color: rgba(23, 44, 33, 0.5);
}

.metodo-pago.seleccionado {
  border-color: var(--color-dorado);
  background-color: rgba(216, 177, 120, 0.1);
}

.metodo-pago input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.metodo-info strong {
  display: block;
  color: var(--color-dorado);
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.metodo-info p {
  color: rgba(216, 177, 120, 0.7);
  font-size: 0.95rem;
}

/* Acciones del formulario */
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.form-actions button {
  flex: 1;
  max-width: 200px;
}

/* Confirmación */
.confirmacion {
  text-align: center;
  padding: 2rem;
}

.confirmacion-icono {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.confirmacion h3 {
  color: var(--color-dorado);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.confirmacion > p {
  color: rgba(216, 177, 120, 0.8);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.confirmacion-detalles {
  background-color: rgba(216, 177, 120, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}

.confirmacion-detalles p {
  margin-bottom: 0.8rem;
  color: rgba(216, 177, 120, 0.9);
  font-size: 1.05rem;
}

.confirmacion-mensaje {
  margin: 2rem 0;
  line-height: 1.8;
}

.confirmacion-mensaje p {
  color: rgba(216, 177, 120, 0.9);
  margin-bottom: 1rem;
}

/* Datos de transferencia */
.datos-transferencia {
  background-color: rgba(216, 177, 120, 0.15);
  border: 2px solid var(--color-dorado);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}

.datos-transferencia h4 {
  color: var(--color-dorado);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
}

.datos-transferencia p {
  margin-bottom: 0.8rem;
  color: rgba(216, 177, 120, 0.9);
  font-size: 1.05rem;
}

.monto-transferir {
  text-align: center;
  font-size: 1.3rem !important;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(216, 177, 120, 0.3);
}

/* Instrucciones de transferencia */
.instrucciones-transferencia {
  background-color: rgba(216, 177, 120, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}

.instrucciones-transferencia h4 {
  color: var(--color-dorado);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.instrucciones-transferencia ol {
  margin-left: 1.5rem;
  color: rgba(216, 177, 120, 0.9);
}

.instrucciones-transferencia li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.btn-whatsapp {
  background-color: #25d366 !important;
  margin-bottom: 1rem;
}

.btn-whatsapp:hover {
  background-color: #20ba5a !important;
}

/* Footer */
.footer {
  background-color: #0f1e17;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-dorado);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: rgba(216, 177, 120, 0.7);
  line-height: 1.8;
  text-decoration: none;
  transition: var(--transicion);
}

.footer-section a:hover {
  color: var(--color-dorado);
}

.footer-bottom {
  border-top: 1px solid rgba(216, 177, 120, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(216, 177, 120, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .logo-img {
    height: 40px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: rgba(23, 44, 33, 0.98);
    width: 100%;
    padding: 2rem;
    gap: 1rem;
    transition: var(--transicion);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .ubicacion-content {
    grid-template-columns: 1fr;
  }

  .shows-grid {
    grid-template-columns: 1fr;
  }

  .show-card {
    flex-direction: column;
    text-align: center;
  }

  .formulario-reserva {
    padding: 2rem 1.5rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions button {
    max-width: 100%;
  }

  .pasos-indicador {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .paso-texto {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  .formulario-reserva {
    padding: 1.5rem 1rem;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.show-card,
.formulario-reserva {
  animation: fadeIn 0.6s ease-out;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-fondo);
}

::-webkit-scrollbar-thumb {
  background: var(--color-dorado);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-dorado-hover);
}

/* ========================================
   ESTILOS PARA MENSAJE CRÍTICO PROMINENTE
   ======================================== */

/* Mensaje crítico - Muy visible y claro */
.mensaje-critico {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%) !important;
  border: 4px solid #ff9800 !important;
  border-radius: 12px !important;
  padding: 25px 30px !important;
  margin: 25px 0 !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
  font-weight: 500 !important;
  color: #664d03 !important;
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.3) !important;
  white-space: pre-line !important;
  animation: pulseGlow 2s ease-in-out infinite !important;
  position: relative !important;
  text-align: left !important;
}

/* Animación de pulso suave */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.5);
    transform: scale(1.01);
  }
}

/* Icono de advertencia destacado */
.mensaje-critico::before {
  content: "⚠️";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  background: #fff;
  padding: 5px 15px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Ajustes para móvil del mensaje crítico */
@media (max-width: 768px) {
  .mensaje-critico {
    font-size: 15px !important;
    padding: 30px 20px 20px !important;
    margin: 20px 0 !important;
  }
  
  .mensaje-critico::before {
    font-size: 32px;
    top: -12px;
  }
}

/* Asegurar que el mensaje sea visible sobre otros elementos */
.mensaje-critico {
  z-index: 1000 !important;
  position: relative !important;
}

/* ═══════════════════════════════════════════════════════════════ */
/* ESTILOS PARA BOTÓN "RESERVA YA" EN CARDS DE SHOWS               */
/* Piano Bar Medellín - Agregado 30/Oct/2025                       */
/* ═══════════════════════════════════════════════════════════════ */

.btn-reserva-show {
  margin-top: 15px;
  padding: 12px 30px;
  background-color: #d8b178;
  color: #172c21;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-reserva-show:hover {
  background-color: #c9a566;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-reserva-show:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive - en móviles el botón es más pequeño */
@media (max-width: 768px) {
  .btn-reserva-show {
    padding: 10px 20px;
    font-size: 14px;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* FIN DE ESTILOS PARA BOTÓN RESERVA YA                            */
/* ═══════════════════════════════════════════════════════════════ */
/* Estilos para la sección FAQ - Piano Bar Medellín */
/* Agregar estos estilos al final de styles.css */

.seccion-faq {
  padding: 100px 20px;
  background-color: var(--color-fondo);
  min-height: 100vh;
}

.seccion-faq .container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 3rem;
  color: var(--color-dorado);
  margin-bottom: 15px;
  font-weight: 300;
  letter-spacing: 2px;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: rgba(216, 177, 120, 0.8);
  font-weight: 300;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.faq-categoria {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(216, 177, 120, 0.1);
}

.categoria-titulo {
  font-size: 1.8rem;
  color: var(--color-dorado);
  margin-bottom: 25px;
  font-weight: 400;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(216, 177, 120, 0.2);
}

.preguntas-lista {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(216, 177, 120, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(216, 177, 120, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-item.abierta {
  border-color: var(--color-dorado);
  background-color: rgba(216, 177, 120, 0.05);
}

.faq-pregunta {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  color: var(--color-dorado);
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fuente-principal);
  transition: all 0.3s ease;
  font-weight: 400;
}

.faq-pregunta:hover {
  color: var(--color-blanco);
}

.faq-pregunta span:first-child {
  flex: 1;
  padding-right: 20px;
}

.faq-icono {
  font-size: 1.5rem;
  font-weight: 300;
  min-width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item.abierta .faq-icono {
  transform: rotate(180deg);
}

.faq-respuesta {
  padding: 0 25px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

.faq-respuesta p {
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-footer {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: rgba(216, 177, 120, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(216, 177, 120, 0.2);
}

.faq-footer h3 {
  font-size: 1.8rem;
  color: var(--color-dorado);
  margin-bottom: 15px;
  font-weight: 400;
}

.faq-footer p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.faq-footer a {
  color: var(--color-dorado);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-footer a:hover {
  color: var(--color-blanco);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .seccion-faq {
    padding: 80px 15px;
  }

  .faq-header h2 {
    font-size: 2.2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .categoria-titulo {
    font-size: 1.5rem;
  }

  .faq-categoria {
    padding: 20px;
  }

  .faq-pregunta {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq-respuesta {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  .faq-footer {
    padding: 30px 20px;
  }

  .faq-footer h3 {
    font-size: 1.5rem;
  }

  .faq-footer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .categoria-titulo {
    font-size: 1.3rem;
  }

  .faq-pregunta {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .faq-icono {
    font-size: 1.2rem;
    min-width: 25px;
  }
}
