/**
 * ========================================
 * ESTILOS PARA EVENTOS CULTURALES
 * Casa de la Cultura
 * ========================================
 */

/* ===== RESET Y BASE ===== */
.evento-wrapper,
.archivo-eventos-wrapper {
    background: #f5f5f5;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO DEL EVENTO (SINGLE) ===== */
.evento-hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 60px 0;
}

.evento-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
}

.evento-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.evento-badges-top {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-tipo,
.badge-estado {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.evento-hero-titulo {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.evento-hero-subtitulo {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 30px 0;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

.evento-hero-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meta-item-hero {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-item-hero svg {
    flex-shrink: 0;
}

.meta-item-hero div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-item-hero strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.meta-item-hero span {
    font-size: 16px;
    font-weight: 600;
}

.meta-item-hero small {
    font-size: 13px;
    opacity: 0.8;
}

.precio-hero .precio-valor {
    font-size: 24px;
    font-weight: 800;
    color: #f39c12;
}

.evento-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
}

.btn-inscripcion,
.btn-compartir-evento {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-inscripcion {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.btn-inscripcion:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
}

.btn-compartir-evento {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-compartir-evento:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.compartir-popup-evento {
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.compartir-popup-evento.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-link {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    transform: translateY(-3px);
}

.share-link.facebook { background: #1877f2; color: #fff; }
.share-link.twitter { background: #1da1f2; color: #fff; }
.share-link.whatsapp { background: #25d366; color: #fff; }

/* ===== CONTENEDOR DEL EVENTO ===== */
.evento-contenedor {
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 3;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
}

.evento-layout {
    display: flex;
    gap: 40px;
}

/* ===== CONTENIDO PRINCIPAL ===== */
.evento-main {
    flex: 1;
    max-width: 800px;
}

.evento-section {
    margin-bottom: 50px;
}

.section-title-evento {
    font-size: 28px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    display: inline-block;
}

.evento-descripcion {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.evento-descripcion p {
    margin-bottom: 20px;
}

.evento-descripcion h2,
.evento-descripcion h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.evento-descripcion ul,
.evento-descripcion ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

/* ===== ARTISTA SECTION ===== */
.artista-section .artista-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid #9b59b6;
}

.artista-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.artista-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ===== FECHAS MÚLTIPLES ===== */
.fechas-multiples {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fecha-principal-box,
.fechas-adicionales-box {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.fecha-principal-box strong,
.fechas-adicionales-box strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* ===== PROGRAMA ===== */
.evento-programa {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
}

/* ===== SLIDER DE EVENTO ===== */
.evento-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.slider-container-evento {
    position: relative;
    height: 500px;
}

.slide-evento {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide-evento.active {
    opacity: 1;
}

.slide-evento img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption-evento {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: #fff;
    font-size: 16px;
}

.slider-btn-evento {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #2c3e50;
}

.slider-btn-evento:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider-btn-evento.prev { left: 20px; }
.slider-btn-evento.next { right: 20px; }

.slider-dots-evento {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot-evento {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-evento.active,
.dot-evento:hover {
    background: #fff;
    transform: scale(1.3);
}

/* ===== VIDEO ===== */
.evento-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.evento-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== REQUISITOS E INCLUYE ===== */
.req-incluye-grid {
    display: flex;
    gap: 30px;
}

.requisitos-box,
.incluye-box {
    flex: 1;
    padding: 25px;
    border-radius: 16px;
    background: #f8f9fa;
}

.requisitos-box {
    border-left: 5px solid #e74c3c;
}

.incluye-box {
    border-left: 5px solid #27ae60;
}

.requisitos-box h3,
.incluye-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.requisitos-box p,
.incluye-box p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ===== ARCHIVOS ===== */
.evento-archivos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.archivo-evento-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.archivo-evento-card:hover {
    border-color: #3498db;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
    transform: translateY(-3px);
}

.archivo-icon-evento {
    width: 60px;
    height: 70px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.archivo-icon-evento.pdf {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.archivo-icon-evento span {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.archivo-info-evento {
    flex: 1;
}

.archivo-info-evento h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.archivo-info-evento span {
    font-size: 13px;
    color: #999;
}

/* ===== ETIQUETAS ===== */
.evento-etiquetas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-evento {
    padding: 8px 18px;
    background: #fff;
    color: #555;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag-evento:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
    transform: translateY(-2px);
}

/* ===== SIDEBAR ===== */
.evento-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.evento-card-info {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 2px solid #f0f0f0;
}

.evento-card-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 5px;
}

.info-content span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.info-content small {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

.precio-item .precio-grande {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #27ae60 !important;
}

.precios-detalle {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 14px;
    color: #555;
}

.cupos-item .cupos-barra {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.cupos-progreso {
    height: 100%;
    background: linear-gradient(90deg, #27ae60 0%, #229954 100%);
    transition: width 0.5s ease;
}

.btn-mapa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    color: #3498db;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 2px solid #e0e0e0;
}

.btn-mapa:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.btn-inscripcion-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-inscripcion-sidebar:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.redes-evento {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.red-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.red-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.red-link.facebook { background: #1877f2; color: #fff; }
.red-link.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); color: #fff; }
.red-link.web { background: #34495e; color: #fff; }

/* ===== ARCHIVO DE EVENTOS ===== */
.eventos-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 0;
    text-align: center;
}

.eventos-hero-content {
    color: #fff;
}

.eventos-hero-titulo {
    font-size: 52px;
    font-weight: 900;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.eventos-hero-descripcion {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FILTROS ===== */
.eventos-filtros-section {
    background: #fff;
    padding: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.filtros-eventos-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.filtro-evento-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtro-evento-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.filtro-evento-btn.active {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.filtro-icono {
    font-size: 18px;
}

/* ===== TABS ===== */
.eventos-tabs-section {
    padding: 30px 0;
}

.eventos-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-btn {
    padding: 15px 40px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #3498db;
    color: #3498db;
}

.tab-btn.active {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===== GRID DE EVENTOS ===== */
.eventos-listado-section {
    padding: 60px 0;
}

.eventos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

/* ===== TARJETA DE EVENTO ===== */
.evento-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.evento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.evento-destacado-card {
    border: 3px solid #f39c12;
}

.badge-destacado-card {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff;
}

.evento-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.evento-card-imagen {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.evento-card-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evento-card:hover .evento-card-imagen img {
    transform: scale(1.1);
}

.evento-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.badge-estado-card {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fecha-badge-card {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fecha-dia {
    font-size: 28px;
    font-weight: 900;
    color: #2c3e50;
    line-height: 1;
}

.fecha-mes {
    font-size: 12px;
    font-weight: 700;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.evento-card-body {
    padding: 25px;
}

.evento-card-header {
    margin-bottom: 15px;
}

.tipo-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.evento-card-titulo {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: #2c3e50;
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.evento-card:hover .evento-card-titulo {
    color: #3498db;
}

.evento-card-descripcion {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.evento-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item-card {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.evento-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.precio-card .precio-gratuito {
    font-size: 16px;
    font-weight: 700;
    color: #27ae60;
}

.precio-card .precio-valor {
    font-size: 20px;
    font-weight: 800;
    color: #2c3e50;
}

.ver-mas-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3498db;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.evento-card:hover .ver-mas-link {
    gap: 10px;
}

/* ===== EVENTOS PASADOS ===== */
.evento-pasado {
    opacity: 0.85;
}

.evento-pasado:hover {
    opacity: 1;
}

/* ===== NO HAY EVENTOS ===== */
.no-eventos-mensaje {
    text-align: center;
    padding: 100px 20px;
}

.no-eventos-icon {
    margin-bottom: 30px;
}

.no-eventos-icon svg {
    opacity: 0.2;
}

.no-eventos-mensaje h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.no-eventos-mensaje p {
    font-size: 18px;
    color: #666;
}

/* ===== LISTAS DE CHECKS (REQUISITOS E INCLUYE) ===== */
.lista-checks {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.lista-checks li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.lista-checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.requisitos-box .lista-checks li::before {
    background: #e74c3c;
    content: '!';
}

/* Lista de fechas adicionales */
.lista-fechas {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.lista-fechas li {
    padding: 10px 15px;
    background: #fff;
    border-left: 3px solid #3498db;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 15px;
    color: #2c3e50;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.lista-fechas li:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .evento-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 1024px) {
    .evento-layout {
        flex-direction: column;
    }
    
    .evento-sidebar {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .evento-hero {
        min-height: 500px;
    }
    
    .evento-hero-titulo {
        font-size: 36px;
    }
    
    .evento-hero-subtitulo {
        font-size: 18px;
    }
    
    .evento-hero-meta {
        flex-direction: column;
        gap: 20px;
    }
    
    .evento-hero-actions {
        flex-direction: column;
    }
    
    .btn-inscripcion,
    .btn-compartir-evento {
        width: 100%;
        justify-content: center;
    }
    
    .slider-container-evento {
        height: 350px;
    }
    
    .req-incluye-grid {
        flex-direction: column;
    }
    
    .eventos-hero-titulo {
        font-size: 36px;
    }
    
    .filtros-eventos-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .filtro-evento-btn {
        flex-shrink: 0;
    }
    
    .eventos-tabs {
        flex-direction: column;
    }
    
    .evento-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .evento-contenedor {
        padding: 40px 0;
    }
    
    .evento-hero-titulo {
        font-size: 28px;
    }
    
    .section-title-evento {
        font-size: 22px;
    }
    
    .evento-card-imagen {
        height: 220px;
    }
    
    .slider-container-evento {
        height: 250px;
    }
}

/* ===== CONTACTO INFO ===== */
.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    word-break: break-word;
    transition: all 0.3s ease;
}

.contacto-item:hover {
    background: #e9ecef;
}

.contacto-item i {
    color: #3498db;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.contacto-item a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacto-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* ===== PRINT ===== */
@media print {
    .evento-hero-actions,
    .compartir-popup-evento,
    .btn-inscripcion-sidebar,
    .eventos-filtros-section,
    .eventos-tabs-section {
        display: none !important;
    }
    
    .evento-hero {
        height: auto;
        min-height: 300px;
    }
}

/* ========================================
 * SHORTCODE [mostrar_eventos] - Grid Cards
 * ======================================== */

.eventos-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.eventos-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.evento-card {
    width: calc(33.333% - 30px);
    margin: 0 15px 30px 15px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.evento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Image - Altura fija */
.evento-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.evento-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evento-card:hover .evento-card-image img {
    transform: scale(1.1);
}

.evento-estado-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Content - Flex grow para altura consistente */
.evento-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.evento-tipo {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    align-self: flex-start;
    flex-shrink: 0;
}

.evento-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    flex-shrink: 0;
}

.evento-card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.evento-card-title a:hover {
    color: #9b59b6;
}

.evento-card-fecha,
.evento-card-lugar {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.evento-card-fecha i,
.evento-card-lugar i {
    margin-right: 8px;
    color: #9b59b6;
    width: 16px;
    text-align: center;
}

/* Card Footer - Siempre al fondo */
.evento-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
    flex-shrink: 0;
}

.evento-precio {
    font-size: 14px;
    font-weight: 700;
    color: #27ae60;
}

.evento-ver-mas {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #9b59b6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.evento-ver-mas i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.evento-ver-mas:hover {
    color: #8e44ad;
}

.evento-ver-mas:hover i {
    transform: translateX(4px);
}

/* Empty state */
.eventos-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 16px;
}

.eventos-empty p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Responsive para shortcode */
@media (max-width: 1024px) {
    .evento-card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 640px) {
    .eventos-grid {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .evento-card {
        width: calc(100% - 20px);
        margin: 0 10px 20px 10px;
    }
    
    .evento-card-image {
        height: 180px;
    }
}