main {
    padding-top: 72px;
    background: #000;
    min-height: 100vh;
    position: relative;
    padding-bottom: 50px;
}

.page-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    overflow: hidden;
    pointer-events: none;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    filter: blur(60px) brightness(0.5);
    transform: scale(1.2);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.background-image.active {
    opacity: 1;
}

.background-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 10%,
            rgba(0, 0, 0, 0.02) 20%,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.35) 60%,
            rgba(0, 0, 0, 0.9) 20%,
            rgba(0, 0, 0, 0.9) 81%,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 1) 0%,
            #000 100%);
    z-index: 1;
}

.explorar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.section-title span {
    color: var(--text-gray);
    font-weight: 400;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.event-card-modern {
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.event-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.event-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #1a1a1a;
}

.event-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card-modern:hover .event-image {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.event-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.event-favorite:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.event-favorite svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

.event-info-modern {
    padding: 20px;
}

.event-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.event-date-modern,
.event-location-modern {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-date-modern {
    color: var(--accent);
    font-weight: 600;
}

.event-price {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-top: 8px;
}

.event-price-free {
    color: var(--accent);
}

.slider-section {
    margin-bottom: 60px;
    padding-top: 40px;
}

.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
    display: flex;
    align-items: flex-end;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2;
    max-width: 600px;
    padding: 0 40px 60px 40px;
}

.slide-date {
    background: var(--accent);
    padding: 6px 12px;
    display: inline-block;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-title {
    font-size: 2.8em;
    margin: 0 0 12px 0;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.slide-subtitle {
    margin-top: 8px;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    max-width: 500px;
}

.slide-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s;
}

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 60px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.arrow {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .slider {
        height: 400px;
    }

    .slide-content {
        padding: 0 24px 40px 24px;
    }

    .slide-title {
        font-size: 2em;
    }

    .slider-controls {
        bottom: 40px;
        left: 24px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        padding: 10px 12px;
    }

    .event-info-modern {
        padding: 14px;
    }

    .event-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider {
        height: 350px;
    }

    .slide-title {
        font-size: 1.6em;
    }

    .slide-content {
        padding: 0 20px 30px 20px;
    }
}