/**
 * Eventos MPW v1.3
 * Estilo Buzz Otaku / Discoteca Anime
 */

.mpw-eventos-wrapper {
    width: 100%;
}

.mpw-eventos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mpw-eventos-grid.mpw-columns-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.mpw-eventos-grid.mpw-columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mpw-eventos-grid.mpw-columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mpw-eventos-grid.mpw-columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.mpw-eventos-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mpw-event-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #17132a 0%, #080812 100%);
    border: 1px solid rgba(255, 0, 153, 0.25);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), 0 0 28px rgba(255, 0, 153, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mpw-event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 153, 0.65);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 42px rgba(255, 0, 153, 0.32);
}

.mpw-event-image-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 320px;
    background: #111;
}

.mpw-eventos-list .mpw-event-card {
    display: grid;
    grid-template-columns: 42% 1fr;
    align-items: stretch;
}

.mpw-eventos-list .mpw-event-image-wrap {
    height: 260px;
    border-radius: 22px 0 0 22px;
}

.mpw-event-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.35s ease;
}

.mpw-image-zoom .mpw-event-card:hover .mpw-event-image {
    transform: scale(1.08);
    filter: saturate(1.18) contrast(1.05);
}

.mpw-event-image-placeholder {
    background:
        radial-gradient(circle at top left, rgba(255, 0, 153, 0.35), transparent 34%),
        radial-gradient(circle at bottom right, rgba(124, 60, 255, 0.35), transparent 38%),
        #151527;
}

.mpw-event-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 153, 0.72);
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 2;
}

.mpw-event-card:hover .mpw-event-overlay {
    opacity: 1;
    transform: scale(1);
}

.mpw-event-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 28px;
    background: #ff0099;
    color: #fff;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transform: translateY(12px);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.mpw-event-card:hover .mpw-event-button {
    transform: translateY(0);
}

.mpw-event-button:hover {
    background: #7c3cff;
    color: #fff;
    box-shadow: 0 14px 36px rgba(124, 60, 255, 0.4);
}

.mpw-event-content {
    padding: 22px;
    position: relative;
    z-index: 1;
}

.mpw-event-date {
    margin-bottom: 10px;
    color: #ff4fbd;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mpw-event-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
}

.mpw-event-title a {
    color: #fff;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.mpw-event-title a:hover {
    color: #ff4fbd;
}

.mpw-event-description {
    margin-bottom: 14px;
    color: #cfcfe8;
    font-size: 15px;
    line-height: 1.6;
}

.mpw-event-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffe600;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.mpw-event-price::before {
    content: '';
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 12px currentColor;
}

.mpw-eventos-empty {
    padding: 18px 22px;
    border-radius: 14px;
    background: #17132a;
    color: #fff;
}

.mpw-reveal {
    opacity: 0;
    transform: translateY(18px);
}

.mpw-reveal.mpw-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (max-width: 1024px) {
    .mpw-eventos-grid.mpw-columns-4,
    .mpw-eventos-grid.mpw-columns-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mpw-eventos-list .mpw-event-card {
        grid-template-columns: 38% 1fr;
    }
}

@media (max-width: 767px) {
    .mpw-eventos-grid,
    .mpw-eventos-grid.mpw-columns-1,
    .mpw-eventos-grid.mpw-columns-2,
    .mpw-eventos-grid.mpw-columns-3,
    .mpw-eventos-grid.mpw-columns-4 {
        grid-template-columns: 1fr;
    }

    .mpw-eventos-list .mpw-event-card {
        display: block;
    }

    .mpw-eventos-list .mpw-event-image-wrap {
        height: 260px;
        border-radius: 22px 22px 0 0;
    }

    .mpw-event-title {
        font-size: 22px;
    }
}

/* Vista Lista v1.3: diseño compacto tipo agenda */
.mpw-eventos-list {
    gap: 30px;
}

.mpw-list-event-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 28px;
    align-items: start;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.mpw-list-date-box {
    text-align: center;
    line-height: 1;
    padding-top: 1px;
}

.mpw-list-date-month {
    display: block;
    color: #7b789b;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.mpw-list-date-day {
    display: block;
    color: #06142c;
    font-size: 31px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.mpw-list-content {
    min-width: 0;
}

.mpw-list-date-full {
    color: #74708e;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 2px;
}

.mpw-list-title {
    margin: 0;
    color: #06142c;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mpw-list-title a {
    color: inherit;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.mpw-list-title a:hover {
    color: #ff4fbd;
}

.mpw-list-event-row:hover .mpw-list-date-day,
.mpw-list-event-row:hover .mpw-list-title a {
    color: #ff4fbd;
}

@media (max-width: 767px) {
    .mpw-list-event-row {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 18px;
    }

    .mpw-list-date-day {
        font-size: 28px;
    }

    .mpw-list-title {
        font-size: 18px;
        letter-spacing: 0.06em;
    }
}
