@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');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&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: #fff;
        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;
}	
	.page-title {
	font-family: 'DM Serif Display', serif;
	font-size: 50px;
	color: #2b2b34;
	width: 100%;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 50px;
}
	
	.content-horizontal {
		display: block;
	}
	
	.content-vertical {
		display: none;
	}
	
	.reliquias-container {
		width: 800px;
		margin: 0 auto;
	}	
	
    .miniatura-reliquias {
	filter: brightness(125%);
}
	
	.a-lobaga-container {
		width: 800px;
		margin: 0 auto;
	}
	
	.Lanatomia-container {
		width: 800px;
		margin: 0 auto;
	}
	
	.reliquias {
	border-collapse: separate;
	border-spacing: 40px 0;
}

    .a-lobaga {
	border-collapse: separate;
	border-spacing: 40px 0;
}
	
	.Lanatomia {
	border-collapse: separate;
	border-spacing: 40px 0;
}
	
	.celda-de-texto {
    vertical-align: top;
    text-align: right;
    text-indent: 0;
    line-height: 10px;
}

    .celda-imagen {}

    .celda-imagen img {
    width: 500px;
    height: auto;
    border-radius: 10px;
}
	
	.reliquias-container:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

    .reliquias-container:not(hover) {
	transform: scale(1);
	transition: transform 0.3s ease;
}
	
	.a-lobaga-container:hover {
	transform: scale(1.05);
	transition: transform 0.3s ease;
}

    .a-lobaga-container:not(hover) {
	transform: scale(1);
	transition: transform 0.3s ease;
}
	
	.Lanatomia-container:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

    .Lanatomia-container:not(hover) {
	transform: scale(1);
	transition: transform 0.3s ease;
}
	
	.espaciado-vacio {
	padding-top: 93px;
}
	
	.logo-footer {
	height: 30px;
	padding-top: 5px;
}

	.logo-footer-small {
		display: none;
	}
	
    .logo-footer img {
}
	
	footer {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #fafbfb;
	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: #080808;
	flex-direction: row;
}

.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: #fff;
        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: #2b2b34;
        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: rgba(255, 255, 255, 1); /* 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;
	align-items: center;
	margin-left: -25px;
}

    .logo img {
    height: 30px;
    text-align: justify;
}
	
	.table {
		width: 100%;
		margin: 0;
	}
	
	.page-title {
	font-family: 'DM Serif Display', serif;
	font-size: 40px;
	color: #2b2b34;
	width: 100%;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 45px;
}	
	.content-horizontal {
		display: none;
	}
	
	.content-vertical {
		display: block;
		margin: 0 auto;
		width: 100%;
		overflow-x: hidden;
	}
	
	.reliquias-container{
		width: 90%; /* Utilizar todo el ancho disponible */
        max-width: 100%; /* Evitar que las tablas se vuelvan demasiado anchas */
        margin: 0 auto; /* Centrar las tablas en la pantalla */
    }
	
	.a-lobaga-container {
		width: 90%; /* Utilizar todo el ancho disponible */
        max-width: 100%; /* Evitar que las tablas se vuelvan demasiado anchas */
        margin: 0 auto; /* Centrar las tablas en la pantalla */
    }
	
	.reliquias {
		width: 100%; /* Ocupar todo el ancho disponible en su contenedor */
        max-width: 100%; /* Evitar que las tablas se vuelvan demasiado anchas */
        border-collapse: collapse; /* Combina el espaciado entre celdas */
		line-height: 0.5;
	}
	
	.a-lobaga {
		width: 100%; /* Ocupar todo el ancho disponible en su contenedor */
        max-width: 100%; /* Evitar que las tablas se vuelvan demasiado anchas */
        border-collapse: collapse; /* Combina el espaciado entre celdas */
		line-height: 0.5;
	}
	
	.celda-imagen img {
		width: 100%;
		height: auto;
		border-radius: 10px;
	}
	
	.miniatura-reliquias {
	filter: brightness(125%);
}
	
	.logo-footer {
		display: none;
	}
	
	.logo-footer-small {
		display: none;
	}
	
	.logo-footer-small {
		height: 30px;
	}
	
	footer {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #fafbfb;
	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: #080808;
	flex-direction: row;
}

    .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: #fafbfb;
	color: #2b2b34;
    margin: 0;
    text-align: right;
}

a{
	text-decoration: none;
	color: #2b2b34;	
}

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

.espaciado-vacio {
    padding-bottom: 50px;
}

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