.contenedor{
    width: 100%;
    height: 100vh;
    background-color: white;
}
.cabecera{
    width: 100%;
    height: 20vh;
    background-color: black;
    display: flex;
    align-items: center; /* Centrado vertical */
    justify-content: center; /* Centrado horizontal (opcional) */
    position: fixed;
    top: -120px; /* Oculto arriba */
    transition: top 0.5s ease-in-out;
    
}
    .cabecera:hover{
        top: 0; /* Aparece al pasar el ratón */
    }
.supermenu{
    width: 100%;
    height: 10vh;
    background-color: black;
    display: flex;
}
.espacio1{
    width:10%;
    height: 10vh;
    background-color: black;
    flex-direction: row;
    
}
.menu{
    width: 80%;
    height: 10vh;
    background-color: black;
    flex-direction: row;
}
.menu a{
    text-decoration: none;
    color: white;
    text-shadow: black;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: xx-large;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    opacity: 0.5; /* 50% de transparencia en todo el elemento */
}
.menu a:hover{
    text-decoration: none;
    color: grey;
    text-shadow: black;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: xx-large;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    /*opacity: 0.1; *//* 50% de transparencia en todo el elemento */
}
.menu ul{
    display: flex;
    text-align: center;
    list-style-type: none; /* Quitamos las viñetas de la lista */
    justify-content: space-around;
}
.menu ul li{
    flex-direction: row;
    display: inline; /* Ítems del menú en una línea horizontal */ 
    
    color:white;
}

.espacio2{
    width:10%;
    height: 10vh;
    background-color:black;
    
    flex-direction: row;
}
.cuerpo{
    width: 100%;
    height: 70vh;
    background-color:black;
    display: flex;
    justify-content: center;
}
.pie{
    width: 100%;
    height:30vh;
    background-color: black;
    text-align: center;
}
.imagen{
    justify-content: center;
    width: 100%;

    text-align: center; /* por si acaso */
    
    
}
/*.imagen::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%; /* Inicia fuera a la izquierda */
  /*width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg); /* Inclina el brillo */
  /*transition: none;
}

.imagen:hover::after {
  left: 150%; /* Se mueve fuera a la derecha */
  /*transition: all 0.7s ease; /* Velocidad del brillo */
/*}*/

.cuerpopagina{
    width: 100%;
    min-height:100vh;
    background-color: black;
    
}
.cabecerapagina{
    width: 100%;
    height: 20vh;
    background-color: black;
    display: flex;
    align-items: center; /* Centrado vertical */
    justify-content: space-between; /* Centrado horizontal (opcional) */
    
    
}
    .titulopagina{
        background-color: black;
        width: 50%;
        height: 20vh;
     
        color: white;
        text-shadow: black;
        font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
        font-size: 100px;
       /*text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        opacity: 0.5; /* 50% de transparencia en todo el elemento */
        text-align: center;
        align-items: center;
    }
.logo{
    width:50% ;
    height: 20vh;
    display: flex;
    text-align: center;
    align-items: center; /* Centrado vertical */
}
.videocard{
    width: 100%;
    height: 300px;
    background-color: black;
    display: flex;
}
.clip{
    width: 65%;
    height:300px;
    background-color: black;
}
.titulovideo{
    width: 35%;
    height: 300px;
    flex-direction: row;
    color: white;
    text-shadow: black;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: xx-large;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    opacity: 0.5; /* 50% de transparencia en todo el elemento */
}
.titulovideo p{
    color: white;
    text-shadow: black;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size:medium;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    opacity: 0.5; /* 50% de transparencia en todo el elemento */

}
.separador{
    background-color: black;
    width: 100%;
    height:20px;

}
.discocard{
    width: 100%;
    height: 300px;
    background-color: black;
    display: flex;
}
.disco{
    width: 50%;
    height: 300px;
    background-color:black;
}
.disco:hover{
    filter: grayscale(0%); /* A color al pasar el ratón */
    transform: scale(1.25); /* Ligero aumento de tamaño */
    clip-path: circle(50%);
}
.bandcard{
    width: 100%;
    height: 80vh;
    display: flex;
}

.membercard{
    flex: 1; /* todas iguales */
    position: relative;
    overflow: hidden;
}

.membercard img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.membercard:hover img{
    transform: scale(1.05);
}

/* TEXTO */

.info{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,0.9)
    );

    color: white;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: xx-large;
}

.info h2{
    margin: 0;
    font-size: 30px;
}

.info p{
    margin-top: 5px;
    font-size: 14px;
}
.cuerposlide{
    width:100%;
    height: 80vh;
    background-color: black;
}
.slider{
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.slides{
    width: 300%;
    height: 100%;
    display: flex;
    transition: 0.6s;
}

.slide{
    width: 33.333%;
    height: 100%;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ocultar radios */

input[type="radio"]{
    display: none;
}

/* movimiento */

#s1:checked ~ .slides{
    margin-left: 0;
}

#s2:checked ~ .slides{
    margin-left: -100%;
}

#s3:checked ~ .slides{
    margin-left: -200%;
}

/* botones */

.navigation{
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.navigation label{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: inline-block;
    opacity: 0.5;
    transition: 0.3s;
}
.navigation label:hover{
    #s1:checked ~ .navigation label[for="s1"],
    #s2:checked ~ .navigation label[for="s2"],
    #s3:checked ~ .navigation label[for="s3"],
    opacity: 1;
    transform: scale(1.3);
}