/* =============================================
   ESTILOS HELLMOKSHA - VERSIÓN COMPLETA
   ============================================= */

:root {
  --hell-red: #e63946;
  --hell-red-dark: #c1121f;
  --hell-black: #0a0a0a;
  --hell-gray: #1e1e1e;
  --hell-border: #3a2c2c;
  --space-unit: 8px;
  --hell-purple: #8a2be2;
  --hell-gold: #ffd700;
  --hell-green: #22c55e;
  --hell-blue: #4fc3f7;
}

/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--hell-black);
  color: #f5f5f5;
  scroll-behavior: smooth;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* ===== HEADER / NAVBAR ===== */
.bg-dark-red {
  background: rgba(26, 11, 11, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--hell-red);
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.15);
}

.brand-logo img {
  max-height: 50px;
  width: auto;
  transition: transform .3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.nav-link {
  font-weight: 600;
  color: #f8f9fa !important;
  position: relative;
  transition: all .3s ease;
  padding: 8px 16px !important;
  border-radius: 30px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--hell-red);
  transition: all .3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--hell-red) !important;
  background: rgba(230, 57, 70, 0.1);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link.active {
  color: var(--hell-red) !important;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-section .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-section .hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-section .hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-section .hero-slider .slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 60px;
  text-align: center;
  width: 100%;
}

.hero-section .hero-content img {
  max-width: 300px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.3));
}

.hero-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: 3px;
  text-shadow: 4px 4px 0 #000, 6px 6px 0 var(--hell-red);
  line-height: 1.1;
  color: #fff;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #ccc;
}

/* ===== SLIDER DOTS ===== */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all .3s ease;
  border: 2px solid transparent;
}

.slider-dots .dot.active {
  background: var(--hell-red);
  border-color: #fff;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ===== BOTONES ===== */
.btn-hell {
  background: linear-gradient(135deg, var(--hell-red) 0%, var(--hell-red-dark) 100%);
  border: none;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  padding: 12px 32px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 4px 15px rgba(230, 57, 70, .3);
}

.btn-hell:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, .5);
  color: white;
}

.btn-hell::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s;
}

.btn-hell:hover::before {
  left: 100%;
}

.btn-hell-purple {
  background: linear-gradient(135deg, var(--hell-purple) 0%, #5a1a8a 100%);
}

.btn-hell-purple:hover {
  box-shadow: 0 8px 25px rgba(138, 43, 226, .5);
}

.btn-disponible {
  background: var(--hell-green);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
}

.btn-disponible:hover {
  background: #16a34a;
  color: #fff;
  transform: scale(1.02);
}

.btn-disponible:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  z-index: 1000;
  transition: all .3s ease;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .5); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, .8); }
}

/* ===== CARD EVENTOS ===== */
.card-event {
  background: var(--hell-gray);
  border-radius: 20px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
  border: 1px solid var(--hell-border);
  position: relative;
}

.card-event::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hell-red), var(--hell-purple), var(--hell-red));
  transform: scaleX(0);
  transition: transform .3s ease;
  z-index: 2;
}

.card-event:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(230, 57, 70, .25);
}

.card-event:hover::before {
  transform: scaleX(1);
}

.event-img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  background: #2a1a1a;
  transition: transform .5s ease;
}

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

.event-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--hell-red);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
  z-index: 3;
}

/* ===== FECHAS DISPONIBLES ===== */
.disponible-card {
  background: #0f1a0f;
  border: 2px dashed var(--hell-green) !important;
  transition: all 0.3s;
}

.disponible-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
}

.disponible-card .event-date-badge {
  background: var(--hell-green);
}

/* ===== SECCIÓN TÍTULOS ===== */
.section-title {
  font-family: 'Bangers', cursive;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 3rem;
  color: var(--hell-red);
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--hell-red), var(--hell-purple), transparent);
  border-radius: 2px;
}

/* ===== FORMULARIOS ===== */
.form-control,
.form-select {
  background-color: #151515;
  border: 2px solid #333;
  color: white;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all .3s ease;
}

.form-control:focus,
.form-select:focus {
  background-color: #1f1f1f;
  border-color: var(--hell-red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, .15);
  color: white;
}

/* ===== ACUERDOS ===== */
.acuerdo-card {
  background: linear-gradient(145deg, #111, #0d0d0d);
  border-left: 6px solid var(--hell-red);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform .3s ease;
}

.acuerdo-card:hover {
  transform: translateX(8px);
}

.acuerdo-card.purple {
  border-left-color: var(--hell-purple);
}

.acordeon-acuerdos {
  background: #0a0a0a;
  border-radius: 15px;
  border: 1px solid #2a1a4e;
  overflow: hidden;
  margin-bottom: 20px;
}

.acordeon-header {
  padding: 18px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #1a0a2e, #0a0a0a);
  transition: .3s;
  color: var(--hell-purple);
  font-weight: 700;
  font-size: 18px;
}

.acordeon-header:hover {
  background: #1a0a2e;
}

.acordeon-header .arrow {
  transition: .3s;
  font-size: 24px;
}

.acordeon-header.active .arrow {
  transform: rotate(180deg);
}

.acordeon-body {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: .4s ease;
}

.acordeon-body.open {
  padding: 20px 25px;
  max-height: 2000px;
}

.acordeon-body p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 12px;
}

.acordeon-body strong {
  color: var(--hell-purple);
}

.acordeon-body .highlight-red {
  color: var(--hell-red);
  font-weight: 700;
}

.backline-box {
  background: #0a0a0a;
  border-radius: 15px;
  padding: 20px 25px;
  border: 1px solid #2a1a4e;
  margin: 20px 0;
}

.backline-box h4 {
  color: var(--hell-purple);
  margin-bottom: 15px;
}

.backline-box ul {
  list-style: none;
  color: #ccc;
  line-height: 2;
}

.backline-box ul li::before {
  content: "▸ ";
  color: var(--hell-red);
}

/* ===== ACUERDO DINÁMICO ===== */
.acuerdo-dinamico {
  background: #0f0f0f;
  border-left: 4px solid var(--hell-red);
  padding: 16px;
  border-radius: 8px;
  font-size: .9rem;
  transition: all 0.3s ease;
  min-height: 100px;
}

.acuerdo-dinamico .acuerdo-item {
  display: none;
}

.acuerdo-dinamico .acuerdo-item.active {
  display: block;
}

/* ===== CATERING ===== */
.catering-info-box {
  background: #0a1a0a;
  border: 1px solid var(--hell-green);
  border-radius: 12px;
  padding: 15px;
  margin-top: 15px;
  display: none;
  color: #b0e0b0;
}

.catering-info-box.visible {
  display: block;
}

.tabla-integrantes-wrapper {
  margin-top: 15px;
  overflow-x: auto;
}

.tabla-integrantes-wrapper table {
  width: 100%;
  background: #0a0a0a;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  min-width: 450px;
}

.tabla-integrantes-wrapper th {
  background: #1a1a1a;
  color: var(--hell-red);
  padding: 10px 8px;
  text-align: center;
  font-size: 0.8rem;
  border-bottom: 2px solid #333;
}

.tabla-integrantes-wrapper td {
  padding: 6px 8px;
  border-bottom: 1px solid #222;
}

.tabla-integrantes-wrapper input,
.tabla-integrantes-wrapper select {
  width: 100%;
  background: #151515;
  border: 1px solid #333;
  color: white;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 0.85rem;
}

.tabla-integrantes-wrapper input:focus,
.tabla-integrantes-wrapper select:focus {
  border-color: var(--hell-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

/* ===== INVITADOS ===== */
.invitados-wrapper {
  margin-top: 20px;
  padding: 15px;
  background: #0d0d0d;
  border-radius: 12px;
  border: 1px solid #2a1a4e;
}

.invitados-wrapper .row {
  margin-bottom: 10px;
}

.invitados-wrapper .row:last-child {
  margin-bottom: 0;
}

.invitados-wrapper input {
  background: #151515;
  border: 1px solid #333;
  color: white;
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
}

.invitados-wrapper input:focus {
  border-color: var(--hell-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

/* ===== TIPO TRABAJO ===== */
.tipo-trabajo-group {
  background: #0d0d0d;
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #2a1a4e;
}

.tipo-trabajo-group .form-check {
  margin-bottom: 8px;
}

.tipo-trabajo-group .form-check:last-child {
  margin-bottom: 0;
}

.tipo-trabajo-group .form-check-input {
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  accent-color: var(--hell-red);
}

.tipo-trabajo-group .form-check-label {
  cursor: pointer;
  color: #ccc;
}

.tipo-trabajo-group .form-check-input:checked + .form-check-label {
  color: #fff;
}

.campo-monto-fijo {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: #1a0000;
  border-radius: 8px;
  border-left: 3px solid var(--hell-red);
}

.campo-monto-fijo.visible {
  display: block;
}

/* ===== BANDA DATA ===== */
.banda-data-box {
  background: #0d0d0d;
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #2a1a4e;
  margin-bottom: 15px;
}

.banda-data-box h6 {
  color: var(--hell-red);
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
}

/* ===== PARTNERS ===== */
.partner-card {
  background: linear-gradient(145deg, #111, #0d0d0d);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid #2a1a4e;
  transition: all .4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-card:hover {
  transform: translateY(-8px);
  border-color: var(--hell-red);
  box-shadow: 0 15px 40px rgba(230, 57, 70, .2);
}

.partner-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter .3s ease;
  margin-bottom: 10px;
}

.partner-card:hover img {
  filter: brightness(1);
}

.partner-card .partner-name {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-top: 5px;
}

.partner-card .partner-desc {
  color: #888;
  font-size: 12px;
  margin-top: 3px;
}

/* ===== CONTACTO ===== */
.contact-card {
  background: linear-gradient(145deg, #121212, #1a0a2e);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #2a1a4e;
  transition: transform .3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--hell-red);
  margin-bottom: 15px;
}

.contact-card .social-link {
  color: var(--hell-purple);
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid var(--hell-purple);
  border-radius: 30px;
  transition: .3s;
  display: inline-block;
  margin: 5px;
}

.contact-card .social-link:hover {
  background: var(--hell-purple);
  color: #fff;
  box-shadow: 0 0 30px rgba(138, 43, 226, .4);
}

.contact-card .email-link {
  color: #ccc;
  text-decoration: none;
  transition: .3s;
  display: block;
  margin: 5px 0;
}

.contact-card .email-link:hover {
  color: var(--hell-red);
}

/* ===== SISTEMA LINKS ===== */
.sistema-links-placeholder {
  background: linear-gradient(145deg, #0a0a0a, #1a0a2e);
  border: 2px dashed var(--hell-purple);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  margin: 20px 0;
}

.sistema-links-placeholder i {
  font-size: 48px;
  color: var(--hell-purple);
  margin-bottom: 15px;
}

.sistema-links-placeholder h5 {
  color: var(--hell-purple);
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
}

.sistema-links-placeholder p {
  color: #888;
  font-size: 0.9rem;
}

/* ===== FECHA ERROR ===== */
.fecha-error-msg {
  display: none;
  background: #2a0a0a;
  border: 2px solid var(--hell-red);
  border-radius: 12px;
  padding: 15px 20px;
  margin: 15px 0;
  color: #ff6b6b;
  font-weight: 600;
}

.fecha-error-msg.visible {
  display: block;
}

.fecha-error-msg i {
  font-size: 1.2rem;
  margin-right: 10px;
}

/* ===== MODAL DE DETALLES MEJORADO ===== */
.modal-historia .modal-content {
  background: transparent;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  height: 90vh;
  max-height: 750px;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.modal-historia .modal-body {
  padding: 0;
  height: 100%;
  position: relative;
}

.modal-historia .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0.8;
  transition: all 0.3s;
}

.modal-historia .btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
  background: rgba(230,57,70,0.7);
}

.modal-historia .historia-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 100%);
  color: #fff;
}

.modal-historia .historia-overlay h5 {
  font-family: 'Bangers', cursive;
  color: var(--hell-red);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.modal-historia .historia-overlay p {
  margin-bottom: 4px;
  font-size: 0.85rem;
  color: #ccc;
}

/* Scrollbar para el modal */
.modal-historia .historia-overlay::-webkit-scrollbar {
  width: 3px;
}

.modal-historia .historia-overlay::-webkit-scrollbar-track {
  background: transparent;
}

.modal-historia .historia-overlay::-webkit-scrollbar-thumb {
  background: var(--hell-red);
  border-radius: 10px;
}

/* Animación de entrada del modal */
.modal.fade .modal-dialog {
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

/* ===== MODALES GENERALES ===== */
.modal-content {
  background: var(--hell-black);
  border: 1px solid #333;
}

.modal-header {
  border-bottom: 1px solid #333;
}

.modal-dialog.modal-sm {
  max-width: 400px;
}

/* ===== UTILIDADES ===== */
.hell-red { color: var(--hell-red); }
.hell-purple { color: var(--hell-purple); }
.hell-gold { color: var(--hell-gold); }
.hell-green { color: var(--hell-green); }
.hell-blue { color: var(--hell-blue); }

.bg-black-gradient {
  background: linear-gradient(135deg, #0a0a0a, #1a0a2e);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section .hero-content {
    padding: 100px 15px 40px;
  }
  .hero-section .hero-content img {
    max-width: 200px;
  }
  .event-img {
    aspect-ratio: 1/1;
  }
  .btn-hell {
    padding: 10px 24px;
    font-size: 14px;
  }
  .modal-dialog.modal-sm {
    max-width: 95%;
    margin: 10px auto;
  }
  .modal-historia .modal-content {
    height: 95vh;
    max-height: 650px;
    border-radius: 16px;
  }
  .modal-historia .modal-body h2 {
    font-size: 1.4rem !important;
  }
  .modal-historia .modal-body .btn-hell {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
  .section-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }
}

@media (max-width: 576px) {
  .modal-historia .modal-dialog {
    margin: 10px;
  }
  .modal-historia .modal-content {
    max-width: 100%;
  }
  .disponible-card .position-relative {
    height: 120px !important;
  }
  .disponible-card .position-relative div[style*="font-size:48px"] {
    font-size: 32px !important;
  }
}

/* ===== SCROLLBAR GENERAL ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--hell-black);
}

::-webkit-scrollbar-thumb {
  background: var(--hell-red);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hell-red-dark);
}
/* ===== MODAL DE DETALLES MEJORADO ===== */
.modal-detalle-dialog {
    max-width: 1000px !important;
    width: 95% !important;
}

.modal-detalle-container {
    display: flex;
    flex-direction: row;
    background: #0a0a0a;
    border-radius: 16px;
    overflow: hidden;
    min-height: 450px;
    max-height: 85vh;
}

/* ===== LADO IZQUIERDO: IMAGEN (Flyer en proporción 9:16) ===== */
.modal-detalle-imagen {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    min-height: 450px;
    max-height: 85vh;
}

.modal-detalle-imagen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #0a0a0a;
}

.modal-detalle-bar-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.modal-detalle-tipo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ===== LADO DERECHO: INFORMACIÓN ===== */
.modal-detalle-info {
    flex: 1;
    padding: 35px 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(145deg, #0d0d0d, #0a0a0a);
    overflow-y: auto;
    min-height: 450px;
}

.modal-detalle-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid #333;
    color: #aaa;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
}

.modal-detalle-close:hover {
    background: rgba(230,57,70,0.25);
    color: #fff;
    border-color: #e63946;
}

.modal-detalle-header h2 {
    font-family: 'Bangers', cursive;
    color: #e63946;
    font-size: 1.8rem;
    margin: 0 0 6px 0;
    letter-spacing: 1px;
    line-height: 1.2;
    padding-right: 30px;
}

.modal-detalle-fecha-hora {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.modal-detalle-fecha-hora span i {
    color: #e63946;
    margin-right: 6px;
}

.modal-detalle-bandas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.modal-detalle-bandas .banda-principal {
    background: rgba(255,215,0,0.12);
    color: #ffd700;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255,215,0,0.08);
}

.modal-detalle-bandas .banda-principal i {
    color: #e63946;
    margin-right: 6px;
}

.modal-detalle-bandas .banda-secundaria {
    color: #aaa;
    font-size: 13px;
}

.modal-detalle-descripcion {
    margin-bottom: 12px;
    max-height: 50px;
    overflow-y: auto;
}

.modal-detalle-descripcion p {
    color: #ccc;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 6px 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border-left: 3px solid #e63946;
}

.modal-detalle-precios {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.modal-detalle-precios span {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.modal-detalle-precios .precio-general {
    background: rgba(230,57,70,0.15);
    border: 1px solid rgba(230,57,70,0.3);
}
.modal-detalle-precios .precio-general span { color: #e63946; font-weight: 700; }

.modal-detalle-precios .precio-preventa {
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.25);
}
.modal-detalle-precios .precio-preventa span { color: #ffd700; font-weight: 700; }

.modal-detalle-precios .precio-doble {
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.25);
}
.modal-detalle-precios .precio-doble span { color: #22c55e; font-weight: 700; }

.modal-detalle-direccion {
    color: #888;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.modal-detalle-direccion i {
    color: #e63946;
    font-size: 14px;
}

.modal-detalle-acciones {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modal-detalle-acciones .btn-comprar {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.modal-detalle-acciones .btn-comprar:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(230,57,70,0.4);
    color: #fff;
}

.modal-detalle-acciones .btn-comprar.disabled {
    background: rgba(255,255,255,0.05);
    color: #666;
    cursor: not-allowed;
    border: 1px dashed #444;
}

.modal-detalle-acciones .btn-instagram {
    padding: 10px 16px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #8a2be2;
    color: #8a2be2;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.modal-detalle-acciones .btn-instagram:hover {
    background: #8a2be2;
    color: #fff;
    transform: scale(1.05);
}

.modal-detalle-acciones .btn-calendario {
    padding: 10px 16px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #22c55e;
    color: #22c55e;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
}

.modal-detalle-acciones .btn-calendario:hover {
    background: #22c55e;
    color: #000;
    transform: scale(1.05);
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 992px) {
    .modal-detalle-dialog {
        max-width: 98% !important;
    }
    
    .modal-detalle-imagen {
        flex: 0 0 38%;
        min-height: 380px;
    }
    
    .modal-detalle-info {
        padding: 25px;
        min-height: 380px;
    }
    
    .modal-detalle-header h2 {
        font-size: 1.5rem;
    }
}

/* ===== RESPONSIVE: MÓVIL ===== */
@media (max-width: 768px) {
    .modal-detalle-dialog {
        max-width: 95% !important;
        margin: 10px auto !important;
    }
    
    .modal-detalle-container {
        flex-direction: column;
        max-height: 95vh;
        border-radius: 12px;
        min-height: auto;
    }
    
    .modal-detalle-imagen {
        flex: 0 0 300px;
        height: 300px;
        min-height: auto;
        max-height: 40vh;
    }
    
    .modal-detalle-imagen img {
        object-fit: cover;
    }
    
    .modal-detalle-info {
        padding: 20px;
        min-height: auto;
        max-height: 55vh;
        overflow-y: auto;
    }
    
    .modal-detalle-header h2 {
        font-size: 1.3rem;
        padding-right: 30px;
    }
    
    .modal-detalle-precios span {
        font-size: 12px;
        padding: 3px 10px;
    }
    
    .modal-detalle-acciones .btn-comprar {
        font-size: 13px;
        padding: 8px 14px;
        min-width: 100px;
    }
    
    .modal-detalle-fecha-hora {
        font-size: 12px;
        gap: 12px;
    }
    
    .modal-detalle-bandas .banda-principal {
        font-size: 12px;
    }
    
    .modal-detalle-descripcion p {
        font-size: 12px;
    }
    
    .modal-detalle-imagen .modal-detalle-bar-badge {
        font-size: 10px;
        top: 10px;
        left: 10px;
    }
    
    .modal-detalle-imagen .modal-detalle-tipo-badge {
        font-size: 9px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .modal-detalle-imagen {
        flex: 0 0 220px;
        height: 220px;
    }
    
    .modal-detalle-info {
        padding: 15px;
        max-height: 50vh;
    }
    
    .modal-detalle-header h2 {
        font-size: 1.1rem;
    }
    
    .modal-detalle-precios {
        gap: 5px;
    }
    
    .modal-detalle-precios span {
        font-size: 11px;
        padding: 2px 8px;
    }
    
    .modal-detalle-acciones .btn-comprar {
        font-size: 12px;
        padding: 6px 12px;
        min-width: 80px;
    }
    
    .modal-detalle-fecha-hora {
        font-size: 11px;
        gap: 8px;
    }
    
    .modal-detalle-bandas .banda-principal {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .modal-detalle-descripcion p {
        font-size: 11px;
        padding: 4px 10px;
    }
}
/* assets/css/style.css - AGREGAR AL FINAL */

/* ===== ESTILOS ADICIONALES ===== */
.disponible-card {
    border: 2px solid #22c55e !important;
    transition: all 0.3s;
}
.disponible-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
}
.card-event {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s;
}
.card-event:hover {
    transform: scale(1.02);
}
.event-date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
}
.event-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.btn-hell {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-hell:hover {
    background: #c1121f;
    color: #fff;
    transform: scale(1.02);
}
.btn-hell-outline {
    background: transparent;
    color: #e63946;
    border: 2px solid #e63946;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-hell-outline:hover {
    background: #e63946;
    color: #fff;
    transform: scale(1.02);
}
.btn-disponible {
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}
.btn-disponible:hover {
    background: #16a34a;
    color: #fff;
    transform: scale(1.02);
}
.hell-red { color: #e63946; }
.hell-purple { color: #8a2be2; }
.section-title {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: #e63946;
}

/* ===== BOTÓN ADMIN FLOTANTE ===== */
.admin-float {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: 2px solid #e63946;
    border-radius: 50px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(230,57,70,0.3);
}
.admin-float:hover {
    transform: scale(1.05);
    background: #e63946;
    color: #fff;
    box-shadow: 0 4px 30px rgba(230,57,70,0.5);
}
.admin-float i { font-size: 16px; }

/* ===== MENU DE NAVEGACIÓN ===== */
.nav-menu-custom {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 15px 0;
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid #1a1a1a;
}
.nav-menu-custom a {
    color: #aaa;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}
.nav-menu-custom a:hover {
    color: #fff;
    background: rgba(230,57,70,0.15);
}
.nav-menu-custom a i { margin-right: 6px; }
.nav-menu-custom a.active {
    color: #e63946;
    background: rgba(230,57,70,0.1);
}

/* ===== BADGE ===== */
.fechas-badge {
    display: inline-block;
    background: #22c55e;
    color: #000;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
}

@media (max-width: 768px) {
    .admin-float {
        top: 10px;
        right: 10px;
        padding: 8px 14px;
        font-size: 12px;
    }
    .nav-menu-custom {
        gap: 8px;
        padding: 10px 0;
    }
    .nav-menu-custom a {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ===== BOTÓN FORO ===== */
.btn-foro {
    background: linear-gradient(135deg, #8a2be2, #6a0dad);
    border: none;
    color: #fff;
}
.btn-foro:hover {
    background: linear-gradient(135deg, #9b4dff, #7b1fa2);
    color: #fff;
    transform: scale(1.02);
}

.btn-fechas:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.5) !important;
}
/* ===== BASE COMÚN PARA TODOS LOS BOTONES ===== */
.btn-hell,
.btn-hell-purple,
.btn-hell-green,
.btn-hell-foro,
.btn-hell-outline {
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 52px;
}

/* ===== BOTÓN ROJO (Cartelera) ===== */
.btn-hell {
    background: #e63946;
    color: #fff;
    border-color: #e63946;
}
.btn-hell:hover {
    background: #c1121f;
    border-color: #c1121f;
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.35);
}

/* ===== BOTÓN PÚRPURA (Acuerdos) ===== */
.btn-hell-purple {
    background: #8a2be2;
    color: #fff;
    border-color: #8a2be2;
}
.btn-hell-purple:hover {
    background: #6a0dad;
    border-color: #6a0dad;
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.35);
}

/* ===== BOTÓN VERDE (Fechas Disponibles) ===== */
.btn-hell-green {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e;
}
.btn-hell-green:hover {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.35);
}
.btn-hell-green .badge-light {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    margin-left: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== BOTÓN FORO (Púrpura oscuro con gradiente) ===== */
.btn-hell-foro {
    background: linear-gradient(135deg, #8a2be2, #5a0d8a);
    color: #fff;
    border-color: #8a2be2;
}
.btn-hell-foro:hover {
    background: linear-gradient(135deg, #9b4dff, #6a0dad);
    border-color: #9b4dff;
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.35);
}

/* ===== BOTÓN OUTLINE (opcional para otros usos) ===== */
.btn-hell-outline {
    background: transparent;
    color: #e63946;
    border-color: #e63946;
}
.btn-hell-outline:hover {
    background: #e63946;
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}
@media (max-width: 768px) {
    .btn-hell,
    .btn-hell-purple,
    .btn-hell-green,
    .btn-hell-foro,
    .btn-hell-outline {
        padding: 8px 18px;
        font-size: 0.9rem;
        min-height: 42px;
        gap: 6px;
    }
    .btn-hell-green .badge-light {
        font-size: 9px;
        padding: 1px 8px;
    }
}

/* =============================================
   FORO WIDGET - VERSIÓN COMPACTA
   ============================================= */
.foro-widget-card {
    background: linear-gradient(145deg, #121212, #0d0d0d);
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #222;
    height: 100%;
    transition: all 0.3s ease;
}
.foro-widget-card:hover {
    border-color: #e63946;
}

.foro-widget-title {
    font-family: 'Bangers', cursive;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== ITEM INDIVIDUAL ===== */
.foro-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0a0a0a;
    border-radius: 6px;
    padding: 5px 8px;
    margin-bottom: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.foro-item:hover {
    border-color: #e63946;
    background: #1a0a0a;
    transform: translateX(3px);
}

.foro-item-img {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #222;
}
.foro-item-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    border: 1px solid #222;
}

.foro-item-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.foro-item-titulo {
    font-size: 11px;
    font-weight: 600;
    color: #eee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.foro-item-titulo:hover {
    color: #e63946;
}
.foro-item-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    color: #555;
    margin-top: 1px;
}
.foro-item-meta span:first-child {
    color: #666;
    max-width: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .foro-widget-card {
        padding: 8px 10px;
    }
    .foro-widget-title {
        font-size: 0.8rem !important;
    }
    .foro-item {
        padding: 4px 6px;
        gap: 6px;
    }
    .foro-item-img {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
    }
    .foro-item-icon {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        font-size: 10px !important;
    }
    .foro-item-titulo {
        font-size: 10px;
    }
    .foro-item-meta {
        font-size: 7px;
    }
}

@media (max-width: 480px) {
    .foro-widget-card {
        padding: 6px 8px;
        border-radius: 6px;
    }
    .foro-item {
        padding: 3px 5px;
        gap: 4px;
        border-radius: 4px;
    }
    .foro-item-img {
        flex: 0 0 22px;
        width: 22px;
        height: 22px;
        border-radius: 3px;
    }
    .foro-item-icon {
        flex: 0 0 22px;
        width: 22px;
        height: 22px;
        font-size: 8px !important;
        border-radius: 3px;
    }
    .foro-item-titulo {
        font-size: 9px;
    }
    .foro-item-meta {
        font-size: 6px;
        gap: 3px;
    }
    .foro-item-meta span:first-child {
        max-width: 30px;
    }
}

/* =============================================
   FORO WIDGET - CON SIDEBAR
   ============================================= */
.foro-widget-card {
    background: linear-gradient(145deg, #121212, #0d0d0d);
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #222;
    height: 100%;
    transition: all 0.3s ease;
}
.foro-widget-card:hover {
    border-color: #e63946;
}

.foro-widget-title {
    font-family: 'Bangers', cursive;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 6px;
}

.foro-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0a0a0a;
    border-radius: 6px;
    padding: 5px 8px;
    margin-bottom: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.foro-item:hover {
    border-color: #e63946;
    background: #1a0a0a;
    transform: translateX(3px);
}

.foro-item-img {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #222;
}
.foro-item-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    border: 1px solid #222;
}

.foro-item-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.foro-item-titulo {
    font-size: 11px;
    font-weight: 600;
    color: #eee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.foro-item-titulo:hover {
    color: #e63946;
}
.foro-item-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    color: #555;
    margin-top: 1px;
}
.foro-item-meta span:first-child {
    color: #666;
    max-width: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
    background: linear-gradient(145deg, #121212, #0d0d0d);
    border-radius: 12px;
    padding: 15px 18px;
    border: 1px solid #222;
    height: 100%;
}
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 4px;
    border-bottom: 1px solid #1a1a1a;
}
.sidebar-item:hover {
    background: #1a0a0a;
    border-color: #e63946;
}
.sidebar-item:last-child {
    border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .col-lg-8, .col-lg-4 {
        width: 100%;
    }
    .sidebar-card {
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .foro-widget-card {
        padding: 8px 10px;
    }
    .foro-widget-title {
        font-size: 0.8rem !important;
    }
    .foro-item {
        padding: 4px 6px;
        gap: 6px;
    }
    .foro-item-img {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
    }
    .foro-item-icon {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        font-size: 10px !important;
    }
    .foro-item-titulo {
        font-size: 10px;
    }
    .foro-item-meta {
        font-size: 7px;
    }
}
.btn-hell-green {
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-hell-green:hover {
    background: #16a34a;
    color: #fff;
    transform: scale(1.02);
}
/* ===== BOTÓN CERRAR SESIÓN EN FORO ===== */
.btn-logout-foro {
    color: #888;
    font-size: 11px;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.3s;
    border: 1px solid #333;
}
.btn-logout-foro:hover {
    color: #e63946;
    border-color: #e63946;
    background: rgba(230,57,70,0.1);
}