/* =========================================================
   EVENTOS - Hoja de estilos del módulo de Calendario
   ========================================================= */

/* Hero section con gradiente suave */
.event-hero {
    padding: 60px 0 40px;
    background: radial-gradient(at 0% 0%, rgba(26, 82, 118, 0.05) 0%, transparent 50%),
                radial-gradient(at 100% 100%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
}

/* Tarjeta principal de evento */
.premium-event-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.premium-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 82, 118, 0.1);
}

/* Contenedor de imagen con efecto zoom */
.event-image-container {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-event-card:hover .event-image-container img {
    transform: scale(1.1);
}

/* Badge de organizador del evento */
.organizer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.badge-aliado  { background: rgba(26, 82, 118, 0.85); color: white; }
.badge-refugio { background: rgba(39, 174, 96, 0.85);  color: white; }

/* Bloque de fecha compacto */
.event-date-block {
    background: #fcfdfe;
    border: 1px solid rgba(26, 82, 118, 0.1);
    border-radius: 15px;
    padding: 12px;
    text-align: center;
}

/* Icono cuadrado de información */
.event-icon-box {
    width: 32px;
    height: 32px;
    background: rgba(26, 82, 118, 0.05);
    color: #1a5276;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Variante de color para ubicación */
.event-icon-box--location { color: #e74c3c; }

/* Botón de detalle del evento */
.btn-event-details {
    background: #f39c12;
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.2);
    transition: all 0.3s;
}

.btn-event-details:hover {
    background: #e67e22;
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.3);
}

/* Clases utilitarias de color */
.bg-soft-blue { background: rgba(26, 82, 118, 0.05); }

/* Utilidades de Diseño Final */
.event-hero-badge { letter-spacing: 2px; }
.event-hero-title { color: #1a5276; letter-spacing: -2px; }
.event-hero-lead { max-width: 700px; }
.event-hero-divider { width: 60px; height: 4px; margin-top: 20px; }

.empty-state-card { border-radius: 35px; }
.empty-state-icon { width: 100px; height: 100px; }

.aliado-logo-small { width: 28px; height: 28px; object-fit: contain; }
.official-badge-icon { width: 28px; height: 28px; }

.text-location-truncate { max-width: 200px; }
.icon-arrow-small { font-size: 0.8rem; }
