/* ============================================
   FUENTE GENERAL SANS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=General+Sans:wght@400;500;600;700&display=swap');

/* ============================================
   WIDGET DE EVENTOS - SOLO LISTA
   ============================================ */

.eventos-personalizados-container {
    font-family: 'General Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
}

.eventos-lista {
    display: flex;
    flex-direction: column;
}

.evento-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 500px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.evento-imagen-container {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    height: 100%;
}

.evento-imagen-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
}

.evento-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evento-imagen-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f5f5f5 25%, #e0e0e0 25%, #e0e0e0 50%, #f5f5f5 50%, #f5f5f5 75%, #e0e0e0 75%);
    background-size: 20px 20px;
}

.evento-contenido {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.evento-titulo {
    margin: 0 0 40px 0;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'General Sans', sans-serif;
}

.evento-titulo a {
    color: #000000;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
    font-family: 'General Sans', sans-serif;
    font-weight: 400;
}

.evento-titulo a:hover {
    opacity: 0.7;
    text-decoration: none !important;
    color: #000000;
}

.evento-metadatos {
    width: 100%;
    margin-bottom: 50px;
}

.evento-fecha {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    font-family: 'General Sans', sans-serif;
}

.evento-hora {
    margin-left: 15px;
    font-weight: 400;
    font-family: 'General Sans', sans-serif;
}

.evento-lugar {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    font-family: 'General Sans', sans-serif;
}

.evento-status-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.evento-status-caja {
    display: inline-block;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid #000000;
    background-color: #ffffff;
    color: #000000;
    min-width: 280px;
    font-family: 'General Sans', sans-serif;
}

/* ============================================
   READ MORE - SOLO TEXTO NEGRO, SIN FONDO, SIN BORDE, SIN HOVER
   ============================================ */

.evento-acciones {
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

.evento-read-more-btn {
    display: inline-block;
    background-color: transparent !important;
    color: #000000 !important;
    border: none !important;
    padding: 0 !important;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none !important;
    font-family: 'General Sans', sans-serif;
    line-height: 1.2;
    min-width: auto !important;
    box-shadow: none !important;
    outline: none !important;
}

.evento-read-more-btn:hover {
    background-color: transparent !important;
    color: #000000 !important;
    border: none !important;
    text-decoration: none !important;
    opacity: 1 !important; /* Sin hover visible */
    box-shadow: none !important;
    outline: none !important;
}

.evento-read-more-btn:active,
.evento-read-more-btn:focus {
    background-color: transparent !important;
    color: #000000 !important;
    border: none !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ============================================
   BOTÓN CARGAR MÁS - NEGRO SIN HOVER ROSA
   ============================================ */

.eventos-cargar-mas-container {
    text-align: center;
    margin: 60px 0 40px;
}

.cargar-mas-eventos {
    display: inline-block;
    padding: 16px 45px;
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'General Sans', sans-serif;
    text-decoration: none !important;
}

.cargar-mas-eventos:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    text-decoration: none !important;
}

.cargar-mas-eventos.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ============================================
   MENSAJE SIN EVENTOS
   ============================================ */

.no-eventos {
    text-align: center;
    padding: 80px 30px;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(0,0,0,0.3);
    border: 2px solid rgba(0,0,0,0.1);
    font-family: 'General Sans', sans-serif;
}

/* ============================================
   RESPONSIVE - WIDGET
   ============================================ */

@media (max-width: 992px) {
    .evento-item {
        flex-direction: column;
        min-height: auto;
    }
    
    .evento-imagen-container {
        flex: 0 0 100%;
        max-width: 100%;
        height: 400px;
    }
    
    .evento-contenido {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 50px 40px;
        min-height: 500px;
    }
    
    .evento-titulo {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .evento-titulo {
        font-size: 30px;
    }
    
    .evento-fecha {
        font-size: 15px;
    }
    
    .evento-lugar {
        font-size: 16px;
    }
    
    .evento-status-caja {
        font-size: 16px;
        min-width: 240px;
        padding: 14px 32px;
    }
}

@media (max-width: 576px) {
    .evento-contenido {
        padding: 40px 30px;
        min-height: 450px;
    }
    
    .evento-titulo {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .evento-fecha {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .evento-lugar {
        font-size: 15px;
    }
    
    .evento-status-container {
        margin: 20px 0;
    }
    
    .evento-status-caja {
        font-size: 15px;
        min-width: 220px;
        padding: 12px 28px;
        letter-spacing: 2.5px;
    }
}

/* ============================================
   POPUP - SINGLE EVENT (BOOK NOW) - SIN HOVER ROSA
   ============================================ */

.evento-single-boton-container {
    text-align: center;
    margin: 40px 0;
}

.evento-single-info-btn {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 16px 45px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    min-width: 280px;
    font-family: 'General Sans', sans-serif;
    transition: opacity 0.2s ease;
    text-decoration: none !important;
}

.evento-single-info-btn:hover {
    opacity: 0.8;
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    text-decoration: none !important;
}

/* ============================================
   POPUP - MODAL
   ============================================ */

.evento-single-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.evento-single-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
}

.evento-single-popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: none;
}

.evento-single-popup-header {
    text-align: center;
    padding: 20px 30px 15px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
    background-color: #ffffff;
}

.evento-single-popup-header h2 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    color: #000000;
    font-family: 'General Sans', sans-serif;
}

.evento-single-popup-body {
    padding: 25px 30px 40px;
    overflow-y: auto;
    flex-grow: 1;
    background-color: #ffffff;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #000000 #f0f0f0;
    font-family: 'General Sans', sans-serif;
}

.evento-single-popup-body::-webkit-scrollbar {
    width: 6px;
}

.evento-single-popup-body::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.evento-single-popup-body::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 10px;
}

.evento-single-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: #000000;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    font-family: 'General Sans', sans-serif;
}

.evento-single-popup-close:hover {
    opacity: 0.8;
    background: #000000;
    color: #ffffff;
}

.evento-single-popup-footer {
    text-align: center;
    padding: 15px 30px 25px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
    background-color: #ffffff;
}

.evento-single-close-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 0;
    transition: opacity 0.2s ease;
    font-family: 'General Sans', sans-serif;
    text-decoration: none !important;
}

.evento-single-close-btn:hover {
    opacity: 0.8;
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    text-decoration: none !important;
}

/* ============================================
   CONTENIDO DEL POPUP
   ============================================ */

.evento-single-info {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333333;
    font-family: 'General Sans', sans-serif;
}

.evento-single-info h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    font-family: 'General Sans', sans-serif;
}

.evento-single-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    font-family: 'General Sans', sans-serif;
}

.evento-single-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 20px 0 5px 0;
    text-transform: uppercase;
    font-family: 'General Sans', sans-serif;
}

.evento-single-info p,
.evento-single-info li,
.evento-single-info span {
    font-size: 14px;
    line-height: 1.6;
    font-family: 'General Sans', sans-serif;
}

.evento-single-info ul {
    margin: 10px 0 15px 20px;
}

.evento-single-info li {
    margin-bottom: 10px;
}

.evento-single-info a {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.evento-single-info a:hover {
    opacity: 0.7;
    text-decoration: underline;
    color: #000000;
}

.evento-single-info strong {
    font-weight: 600;
    color: #000000;
}

/* ============================================
   MENSAJE DE EVENTO PASADO
   ============================================ */

.evento-single-past-message {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: 'General Sans', sans-serif;
}

.evento-single-past-message p {
    font-size: 16px;
    color: #000000;
    margin: 0;
    font-family: 'General Sans', sans-serif;
}

.evento-single-past-message a {
    color: #000000;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.evento-single-past-message a:hover {
    opacity: 0.7;
    color: #000000;
}

/* ============================================
   MAPA - BORDE NEGRO
   ============================================ */

.evento-single-map-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.evento-single-map-section h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'General Sans', sans-serif;
}

.evento-single-map-wrapper {
    width: 100%;
    margin-bottom: 15px;
    border: 2px solid #000000;
    border-radius: 4px;
    overflow: hidden;
}

.evento-single-map-wrapper iframe {
    width: 100% !important;
    height: 300px !important;
    display: block;
    border: none;
}

.evento-single-address {
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'General Sans', sans-serif;
}

.evento-single-map-link {
    text-align: center;
    margin-top: 15px;
}

.evento-single-map-link a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    border: 2px solid #000000;
    border-radius: 4px;
    transition: opacity 0.2s ease;
    font-family: 'General Sans', sans-serif;
}

.evento-single-map-link a:hover {
    opacity: 0.8;
    background-color: #000000;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ============================================
   FORMULARIO - BORDE NEGRO
   ============================================ */

.evento-single-form-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.evento-single-form-section h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'General Sans', sans-serif;
}

.evento-single-form-wrapper {
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 4px;
    overflow: hidden;
}

.evento-single-form-wrapper iframe {
    width: 100% !important;
    height: 550px !important;
    border: none;
    display: block;
    margin: 0;
    overflow: hidden !important;
}

/* ============================================
   LOADING
   ============================================ */

.evento-single-loading {
    text-align: center;
    padding: 80px 20px;
    font-size: 16px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-family: 'General Sans', sans-serif;
}

/* ============================================
   RESPONSIVE - POPUP
   ============================================ */

@media (max-width: 768px) {
    .evento-single-info-btn {
        min-width: 240px;
        padding: 14px 35px;
        font-size: 13px;
    }
    
    .evento-single-popup-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .evento-single-popup-body {
        padding: 20px 25px 35px;
    }
    
    .evento-single-form-wrapper iframe {
        height: 600px !important;
    }
    
    .evento-single-map-wrapper iframe {
        height: 250px !important;
    }
    
    .evento-single-popup-header h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .evento-single-info-btn {
        min-width: 200px;
        padding: 12px 25px;
        font-size: 12px;
    }
    
    .evento-single-form-wrapper iframe {
        height: 650px !important;
    }
    
    .evento-single-map-wrapper iframe {
        height: 200px !important;
    }
    
    .evento-single-popup-header h2 {
        font-size: 18px;
    }
}

/* ============================================
   QUITAR SUBRAYADOS Y HOVERS ROSAS DE TODOS LADOS
   ============================================ */

a, 
a:hover, 
a:focus, 
a:active,
button,
button:hover,
.evento-imagen-link,
.evento-titulo a,
.evento-titulo a:hover,
.evento-read-more-btn,
.evento-read-more-btn:hover,
.evento-read-more-btn:active,
.evento-read-more-btn:focus,
.cargar-mas-eventos,
.cargar-mas-eventos:hover,
.evento-single-info-btn,
.evento-single-info-btn:hover,
.evento-single-popup-close,
.evento-single-popup-close:hover,
.evento-single-close-btn,
.evento-single-close-btn:hover,
.evento-single-map-link a,
.evento-single-map-link a:hover {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Excepción: enlaces dentro del contenido del popup (info) */
.evento-single-info a,
.evento-single-past-message a {
    text-decoration: underline !important;
}

.evento-single-info a:hover,
.evento-single-past-message a:hover {
    text-decoration: underline !important;
    opacity: 0.7;
    color: #000000;
}
/* ============================================
   FUERZA BRUTA - READ MORE SOLO TEXTO NEGRO
   ============================================ */

.evento-read-more-btn,
.evento-read-more-btn:link,
.evento-read-more-btn:visited,
.evento-read-more-btn:hover,
.evento-read-more-btn:active,
.evento-read-more-btn:focus {
    background-color: transparent !important;
    color: #000000 !important;
    border: none !important;
    border-style: none !important;
    border-width: 0 !important;
    border-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    text-decoration: none !important;
    font-family: 'General Sans', sans-serif !important;
    line-height: 1.2 !important;
    display: inline-block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
    outline: none !important;
    text-shadow: none !important;
    -webkit-text-fill-color: #000000 !important;
}

.evento-read-more-btn span,
.evento-read-more-btn div,
.evento-read-more-btn * {
    background-color: transparent !important;
    color: #000000 !important;
    border: none !important;
    text-decoration: none !important;
}