@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) {
	
	.tabla-horizontal {
	display: block;
	}
	
	.tabla-vertical {
	display: none;
	}
	
    .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: 10px;
}
	
    .celda-imagen-h img {
	    filter: brightness(150%);
	    border-radius: 10px;
}
	
	.espaciado-vacio {
	padding-bottom: 164px;
}
	
	.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) {
	
    .tabla-horizontal {
	display: none;
	}
	
	.tabla-vertical {
	display: block;
	width: 520px;
	margin: 0 auto;
	}
	
	.tabla-vertical table {
		width: 100%;
		margin: 0 auto;
	}
	
	.celda-imagen-v,.celda-de-texto-v {
		width: 50%;
	}
	
	.celda-de-texto-v {
		padding: 0 30px;
	}
	
	.celda-imagen-v img {
		margin-bottom: -50px;
	}
	
    .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 */
}
	
	.page-title {
	font-family: 'DM Serif Display', serif;
	font-size: 40px;
	color: #2b2b34;
	width: 100%;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 50px;
}
	
	.logo {
	display: flex;
	margin-left: -25px;
}
	
	.logo img {
    height: 30px;
    text-align: justify;
}
	
	.tabla-vertical {
		width: 100%;
		height: auto;
		margin: 0 auto;
	}
	
	.celda-imagen-v img {
	   filter: brightness(150%);
	   width: 80%;
	   height: auto;
	   border-radius: 10px;
}
	
	.espaciado-vacio {
	padding-bottom: 100px;
}
	
	.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;
    margin: 0;
    color: #2b2b34;
    text-align: justify;
    border-top-left-radius: 0px;
    font-style: normal;
}

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

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

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