@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');

@keyframes fadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}

/* Estilos para pantallas anchas */
@media (min-width: 769px) {
	
    .header-buttons-horizontal {
        display: block;
    }
    .header-buttons-vertical {
        display: none;
    }
	
	.menu-icon {
		display: none;
	}
	
	.checkbox {
		display: none;
	}
	
    header {
        background-color: #080808;
        display: flex;
        flex-direction: row;
        height: 70px;
        justify-content: space-between;
        align-items: center;
        padding: 5px 60px;
        text-align: justify;
    }
    .header-buttons-horizontal {
        display: flex;
        flex-direction: row;
        text-decoration: none;
        list-style: none;	
    }
    nav a {
        display: inline-block;
        padding: 0 0 0 20px;
    }
    .header-buttons-horizontal li a:hover {
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }
	
	.logo {
	display: flex;
	align-items: center;
	margin-left: -5px;

}

    .logo img {
    height: 40px;
    text-align: justify;
}
	
	.logo-footer {
	height: 30px;
	padding-top: 5px;
}

	.logo-footer-small {
		display: none;
	}
	
    .logo-footer img {
}
	.previous-next-buttons {
	width: 100%;
	margin-bottom: 40px;
}

.next-project-button {
    bottom: 20px; /* Ajusta la distancia desde la parte inferior */
    right: 20px; /* Ajusta la distancia desde la derecha */
    background-color: rgba(255,255,255,0.10);
    color: #fafbfb;
    padding: 10px 10px;
	margin-right: 50px;
    text-decoration: none;
    border-radius: 5px;
}

.previous-project-button {
    bottom: 20px; /* Ajusta la distancia desde la parte inferior */
    right: 20px; /* Ajusta la distancia desde la derecha */
    background: rgba(255,255,255,0.10);
    color: #fafbfb;
    padding: 10px 10px;
	margin-left: 50px;
    text-decoration: none;
    border-radius: 5px;
}
	
	.creditos-reliquias {
	margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fafbfb;
}
	
	.table {
	vertical-align: top;
}

    .title {
	font-weight: 500;
	font-size: 40px;
} 
	
	.logo-project {
		width: 120px;
		height: auto;
	}

td .title {
	margin-top: 0;
	margin-bottom: 0;
}

td .subt {
	margin-top: 5px;
}
}
	
	footer {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #2b2b34;
	height: 70px;
    padding: 5px 55px 5px 60px;
    text-align: center;
	justify-content: space-between;
    display: flex; /* Permite alinear en columna */
    align-items: center; /* Alineación verticalmente */
    background-color: #fafbfb;
	flex-direction: row;
}

.logo-footer img {
}

.redes-sociales {
    display: flex;
    flex-direction: row; /* Alineación en fila */
    align-items: center;
    justify-content: center; 
	padding-top: 5px;
}

.logo-vimeo img {
	width: 23px;
	height: auto;
	margin: 0 10px;
}

.logo-instagram img {
    width: 22px;
    height: auto;
    margin: 0 10px; /* Ajusta el margen entre los íconos */
}

.logo-linkedin img {
	width: 23px;
	height: auto;
	margin: 0 10px;
}

/* Estilos para pantallas estrechas (mostrar hamburguesa) */
@media (max-width: 768px) {
	
    .header-buttons-horizontal {
        display: none;
    }
    .header-buttons-vertical {
        display: none;
    }
	
	.checkbox {
		display: none;
	}
	
    header {
        background-color: #080808;
        display: flex;
		position: relative;
        flex-direction: row;
		font-size: 30px;
        height: 70px;
        justify-content: space-between;
        align-items: center;
        padding: 5px 60px;
        text-align: justify;
    }

    .menu-icon {
		font: 'Open Sans' , 'Sans serif';
		font-weight: 300;
        font-size: 40px;
        color: #fafbfb;
        cursor: pointer;
        position: absolute;
        margin-top: -6px;
        right: 30px;
        z-index: 3;
		transition: top 0.3s ease;
    }
	
	.menu-icon .close-icon {
		display: none;
		font-family: 'Open Sans' , 'Sans serif';
		font-weight: 300;
		font-size: 35px;
		position: fixed;
		right: 35px;
		top: 20px;
	}
	
	.menu-icon .burger-icon is-fixed {
		top: 0;
	}
	
    #menu-toggle:checked + .menu-icon + .header-buttons-vertical {
       
		animation: fadeIn .3s ease-out forwards;
		display: block;
		position: fixed;
        top: 0;
        left: -18px;
        width: 105%;
        height: 100%;
        background: #080808; /* Ajusta el fondo a tu preferencia */
        align-items: center; /* Centra verticalmente */
        justify-content: center; /* Centra horizontalmente */
        text-align: center; /* Alinea el texto horizontalmente (opcional) */
		list-style: none;
		padding-top: 40%;
		z-index: 2;
    }
	
	#menu-toggle:checked + .menu-icon .burger-icon {
        display: none; /* Oculta el icono de hamburguesa cuando el checkbox está marcado */
}

    #menu-toggle:checked + .menu-icon .close-icon {
        display: inline; /* Muestra la cruz cuando el checkbox está marcado */
}
	
	.header-buttons-vertical li {
        margin: 20px 0; /* Espacio entre elementos del menú */
    }
	
	.header-buttons-vertical li a:hover {
    opacity: 0.7; /* Puedes ajustar la opacidad según tu preferencia */
    transition: opacity 0.3s ease; /* Añade una transición suave */
}
	
	.logo {
	display: flex;
	margin-left: -25px;

}

    .logo img {
    height: 30px;
    text-align: justify;
}
	
	.creditos-reliquias-container {
		width: 100%;
        max-width: 100%;
		margin-top: 20px;
		
	}
	
	.creditos-reliquias {
	width: 100%;
	display: flex;
	font-size: 12px;
	color: #fafbfb;
	margin: 0 auto;
}
	
	.creditos-reliquias tbody {
		margin: 0 auto;
	}
	
	.table {
	vertical-align: top;
}

    .title {
	font-weight: 500;
	font-size: 32px;
} 
	
		.logo-project {
		width: 80px;
		height: auto;
	}

td .title {
	margin-top: 0;
	margin-bottom: 0;
}

td .subt {
	margin-top: 5px;
}
	
	.espaciado-vacio {
	padding-bottom: 5px;
}
		
	.logo-footer {
		display: none;
	}
	
	.logo-footer-small {
		display: none;
	}
	
	.logo-footer-small {
		height: 30px;
	}
	
	.previous-next-buttons {
	width: 100%;
	margin-bottom: 40px;
}

    .next-project-button {
    bottom: 20px; /* Ajusta la distancia desde la parte inferior */
    right: 20px; /* Ajusta la distancia desde la derecha */
    background-color: rgba(255,255,255,0.10);
    color: #fafbfb;
    padding: 10px 10px;
	margin-right: 20px;
    text-decoration: none;
    border-radius: 5px;
}

    .previous-project-button {
    bottom: 20px; /* Ajusta la distancia desde la parte inferior */
    right: 20px; /* Ajusta la distancia desde la derecha */
    background: rgba(255,255,255,0.10);
    color: #fafbfb;
    padding: 10px 10px;
	margin-left: 20px;
    text-decoration: none;
    border-radius: 5px;
}
	
footer {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #2b2b34;
	height: 70px;
    padding: 5px 26px 5px 30px;
    text-align: left;
	justify-content: space-between;
    display: flex; /* Permite alinear en columna */
    align-items: center; /* Alineación verticalmente */
    background-color: #fafbfb;
	flex-direction: row;
}

.logo-footer img {
}

.redes-sociales {
    display: flex;
    flex-direction: row; /* Alineación en fila */
    align-items: center;
    justify-content: center; 
	padding-top: 5px;
}

.logo-vimeo img {
	width: 23px;
	height: auto;
	margin: 0 10px;
}

.logo-instagram img {
    width: 22px;
    height: auto;
    margin: 0 10px; /* Ajusta el margen entre los íconos */
}

.logo-linkedin img {
	width: 23px;
	height: auto;
	margin: 0 10px;
}
	
}

body {
    animation: fadeIn 1s ease-out forwards;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    background-color: #080808;
    margin: 0;
}
tr td img {
}

a{
	text-decoration: none;
	color: #fafbfb;	
}

.menu-button-active {
	font-family: 'Open Sans', sans-serif;
	font-weight: 500;
}

.header-buttons {
	display: flex;
	flex-direction: row;
	text-decoration: none;
	list-style: none;
}

nav a{
	display: inline-block;
	padding: 0 0 0 20px;
}

.carousel-container {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.carousel-images {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    max-width: 100%;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
	width: 40px;
	height: 40px;
    padding: 8px; /* Ajusta el tamaño del botón */
    border: none;
    cursor: pointer;
    font-size: 18px; /* Ajusta el tamaño de la fuente del botón */
    opacity: 0.7; /* Ajusta la opacidad del botón */
    margin: 0 10px; /* Ajusta el margen entre el botón y el borde de la ventana */
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 50%;
	line-height: 20px;
	scale: 0.9;
}

.carousel-button.prev {
    left: 20px; /* Ajusta la posición izquierda del botón "Prev" */
}

.carousel-button.next {
    right: 20px; /* Ajusta la posición derecha del botón "Next" */
}

.next-project-button:hover {
    background: #fafbfb;
    color: #080808;
}

.previous-project-button:hover {
	background: #fafbfb;
    color: #080808;
}