@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yellowtail&display=swap');

:root {
	--blanco: #fff;
	--fuente: 'Lato', sans-serif;

	--primario: #232F3E;
	--fuente2: 'Yellowtail', cursive;
}


html {
	box-sizing: border-box;
	font-size: 62.5%;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	background: var(--primario);
	font-family: Arial, sans-serif;
	font-size: 1.6rem;
}


h1 {
	font-size: 4.8rem;
}

h2 {
	font-size: 4rem;
}

h3 {
	font-size: 3.2rem;
}

h4 {
	font-size: 2.8rem;
}

a{
    text-decoration: none;
    color: var(--blanco);
    
}

.contenedor {
	width: min(90%, 120rem);
	margin: 0 auto;
}

.principal__logo {
	max-width: 100%;
	width: 9rem;
}

.principal {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* height: 30rem; */

}

.principal__h {
	display: flex;
	align-items: center;
	color: var(--blanco);
	/* margin-bottom: 1.5rem; */

}

.principal__h h1 {
	background-color: rgba(0, 0, 0, .50);
	padding: 1rem;
	border-radius: 2rem;
	font-family: var(--fuente);
	font-weight: 300;
	font-style: italic;
}

.principal__h h1 span {
	font-size: 3.2rem;
}

@media (max-width: 400px){
	.principal__h h1{
		font-size: 2.8rem;
	}

	.principal__h h1 span{
		font-size: 1.8rem;;
	}

	.principal__logo {
		max-width: 100%;
		width: 6rem;
	}

}

.footer{
    display: flex;
    flex-direction: column;
	align-items: center;
	
}

.footer a{
    display: flex;
    align-items: center;
    margin-right: 4rem;
	padding: 1.5rem 0;
}
@media (min-width: 768px) { 
	.footer__items{
		display: flex;
	}
	
}

.footer img{
    width: 3rem;
    margin-right: .5rem;
}



.footer a:last-of-type{
    margin-right: 0;
}


.video{
	display: block; 
	max-width: 50%;
	margin: 0 auto;
}

/* ****************** POLITICAS ****************************/

.politicasCitas{
	color: var(--blanco);
	width: 60%;
	margin: 0 auto;
}

ul{
	list-style: none;
}

li.espacioInferior{
	margin-bottom: 10rem;	
}

.espacioInferior li{
	margin-bottom: 1.5rem;
	list-style: circle;
}

.espacioInferior li>p{
	text-align: center;
	padding: 2rem;
	background-color: rgba(10, 19, 30, 0.501);
	border-radius: 1rem;
}

h2,h3{
	text-align: center;
}