body{
font-family: Calibri, Arial, sans-serif;
background: #000000;
color: white;
margin: 0;
text-align: center;
padding-top: 80px;
}

/* MENU */

nav{
background: white;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
}

.menu{
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}

.menu li a{
text-decoration: none;
color: black;
padding: 20px;
display: block;
font-weight: bold;
}

.menu li a{
background: #610c0c;
color: white;
}

/* BOTON MENU MOVIL */

.menu-toggle{
display: none;
font-size: 30px;
padding: 15px;
cursor: pointer;
background: white;
color: black;
}

/* SLIDER */

.slider{
width: 100%;
overflow: hidden;
position: relative;
}

.slide{
width: 100%;
display: none;
}

.slide.active{
display: block;
}

/* BOTONES SLIDER */

.prev{
position: absolute;
top: 50%;
left: 10px;
transform: translateY(-50%);
background: rgba(0,0,0,0.5);
color: white;
border: none;
font-size: 30px;
padding: 10px;
cursor: pointer;
}

.next{
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
background: rgba(0,0,0,0.5);
color: white;
border: none;
font-size: 30px;
padding: 10px;
cursor: pointer;
}

/* CONTENIDO */

.contenedor{
max-width: 900px;
margin: auto;
padding: 20px;
}

.perfil{
width: 200px;
border-radius: 50%;
}

/* REDES */

.redes{
display: flex;
justify-content: center;
gap: 20px;
margin: 20px;
}

.redes img{
width: 70px;
}

/* IMAGENES RESPONSIVE */

img{
max-width: 100%;
height: auto;
}

/* GALERIA */

.gallery{
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
margin-top: 20px;
}

.gallery-item{
width: 200px;
}

.gallery-item img{
width: 100%;
height: auto;
border-radius: 10px;
cursor: pointer;
transition: transform 0.3s ease;
}

.gallery-item img{
transform: scale(1.05);
}

/* RESPONSIVE CELULAR */

@media (max-width:768px){

.menu{
display: none;
flex-direction: column;
width: 100%;
background: white;
position: absolute;
top: 60px;
left: 0;
}

.menu li a{
border-bottom: 1px solid #ddd;
}

.menu.active{
display: flex;
}

.menu-toggle{
display: block;
}

.gallery-item{
width: 150px;
}

}

/* MODAL */

.modal{
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.8);
}

.modal-content{
display: block;
max-width: 80%;
max-height: 80%;
margin: auto;
margin-top: 5%;
}

.close{
position: absolute;
top: 20px;
right: 35px;
color: white;
font-size: 40px;
cursor: pointer;
}

/* VIDEO */

.gallery video{
width: 200px;
height: auto;
border-radius: 10px;
}