

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa; 
    color: #212529;
    padding-top: 56px; 
}

h1, h2, h3, h4, h5, .navbar-brand, .btn-filtro {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar {
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}
.navbar-brand i {
    margin-right: 5px;
}

.imagen-carrusel {
    height: 85vh;
    object-fit: cover;
    filter: brightness(0.6);
}

.fondo-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 4px;
    border-left: 5px solid #dc3545;
    bottom: 20%;
}

.titulo-seccion {
    border-left: 5px solid #dc3545;
    padding-left: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tarjeta-rock {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta-rock:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border: 1px solid #dc3545 !important;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.evento-historia {
    border-left: 3px solid #dc3545;
    padding-left: 25px;
    margin-bottom: 40px;
    position: relative;
}

.evento-historia::before {
    content: '';
    width: 15px;
    height: 15px;
    background: #dc3545;
    border-radius: 50%;
    position: absolute;
    left: -9px;
    top: 5px;
    border: 2px solid white;
}

.separador-genero {
    background-color: #000;
    color: #fff;
    padding: 15px 20px;
    margin-top: 60px;
    margin-bottom: 30px;
    border-left: 10px solid #dc3545; /* Rojo por defecto */
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-filtro {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: bold;
    margin: 5px;
}

.table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

thead.table-dark th {
    background-color: #000 !important;
    color: #dc3545;
}

footer {
    border-top: 5px solid #dc3545;
}

footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #dc3545 !important;
}



.caja-mvv {
    background-color: #fff; 
    border-bottom: 4px solid #dc3545; 
    transition: transform 0.3s ease;
}

.caja-mvv:hover {
    transform: translateY(-10px); 


.icono-mvv {
    width: 70px;
    height: 70px;
    background-color: #dc3545; 
    color: white;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto; 
    transition: transform 0.5s ease;
}

.caja-mvv:hover .icono-mvv {
    transform: rotate(360deg); 
}

}

.logo-zoom {
    transition: transform 0.3s ease; 
    cursor: pointer; 
}

.logo-zoom:hover {
    transform: scale(1.2); 
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2)); 
}