body {
    background: #f4f6f9;
    font-family: 'Poppins', sans-serif;
}

/* HERO */
.hero-eventos {
    background: url('../img/hero-eventos.jpg') center/cover no-repeat;
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-eventos .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-eventos .contenido {
    position: relative;
    z-index: 2;
}

.hero-eventos h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* CARD EVENTO */
.evento-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.evento-card img {
    height: 230px;
    object-fit: cover;
}

.evento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.evento-card h5 {
    font-weight: 600;
}

.fecha {
    display: inline-block;
    margin-top: 10px;
    color: #ff9800;
    font-weight: 500;
}

/* BOTON VOLVER */
.btn-volver {
    position: fixed;
    top: 20px;
    left: 20px;
    background: black;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    z-index: 999;
    transition: 0.3s ease;
}

.btn-volver:hover {
    background: #ff9800;
    color: black;
}

/* MOBILE */
@media (max-width: 768px) {

.hero-eventos {
    height: 40vh;
}

.hero-eventos h1 {
    font-size: 1.8rem;
}

.evento-card img {
    height: 200px;
}

}