* {
	box-sizing: border-box;
}

body {
	background: #1D1D1F;
	color: #fff;
	font-family: Helvetica Neue,Segoe UI,Roboto,Ubuntu,sans-serif;
	min-height: 100vh;
	display: flex;
	/*align-items: center;*/
}

.contenedor {
	max-width: 1200px;
	width: 90%;
	margin: auto;
}

/* --- --- CONTENEDOR PRINCIPAL --- --- */

.contenido-principal {
	margin-bottom: 50px;
	display: flex;
	align-items: center;
}

.contenido-principal__imagen {
	vertical-align: top;
	margin-right: 20px;
	width: 50%;
	max-width: 550px;
}

.contenido-principal__contenedor {
	width: 50%;
}

.contenido-principal__titulo {
	font-weight: normal;
	font-size: 28px;
}

.contenido-principal__resumen {
	font-family: 'Open Sans', sans-serif;
	line-height: 30px;
	color: #CFCFCF;
}

/* --- --- CAROUSEL --- --- */
.carousel__contenedor {
	position: relative;
}

.carousel__anterior,
.carousel__siguiente {
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	top: calc(50% - 35px);
	cursor: pointer;
	line-height: 30px;
	text-align: center;
	background: none;
	color: #fff;
	opacity:  100%;    font-size: 30px;
}

.carousel__anterior:hover,
.carousel__siguiente:hover {
	opacity: 20%;
}

.carousel__anterior {
	left: -30px;
}

.carousel__siguiente {
	right: -30px;
}

.carousel__lista {
	overflow: hidden;
}

.carousel__elemento {
	text-align: center;
}

.carousel__indicadores .glider-dot {
	display: block;
	width: 30px;
	height: 4px;
	background: #fff;
	opacity: .2;
	border-radius: 0;
}

.carousel__indicadores .glider-dot:hover {
	opacity: .5;
}

.carousel__indicadores .glider-dot.active {
	opacity: 1;
}
.social {color: #fff;font-size: 20px;margin: 0 11px;}
.social:hover{color: #eee;}
@media (max-width:576px)
{
    .inicio {height: auto;text-align: center;padding: 5px;margin-top: 20px;position: fixed;z-index: 1;}
    .footer2{text-align:center;margin-bottom:20px;}
}

@media screen and (max-width: 800px) {
	body {
		/*padding: 40px 0;*/
	}

	.contenido-principal {
		flex-direction: column;
	}

	.contenido-principal > * {
		width: 100%;
	}
}

.buttonFooter{background:#fff;padding:5px 15px;border-radius:5px;color:#e50914;font-weight:700;vertical-align: -webkit-baseline-middle;}
.buttonFooter:hover{font-style:none;text-decoration:none;color:#e50914}
.footer2{text-align:left;}
.footer{color: #fff;text-align: center;font-size: 12px;padding: 10px 0;position: fixed;bottom: 0;background: rgb(0 0 0 / 81%);}

#loadingScreen {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999; /* Asegúrate de que sea más alto que el resto del contenido */
    background: #0d0406;
}

#loadingScreen video {
    /* Ajusta el tamaño del vídeo según sea necesario */
    max-width: 90%; /* Limita el ancho del vídeo al 90% del ancho de su contenedor */
    max-height: 90%; /* Limita la altura del vídeo al 90% de la altura de su contenedor */
    object-fit: cover; /* Esto hace que el vídeo cubra completamente el área sin distorsionarse */
}

