/*
Theme Name: Encuentro
Description:  
Author: Saul Chavez (Programación) Víctor Martínez (Diseño Gráfico)
Author URI: https://verticeasociados.com/
Version: 1.0
Tested up to: 6.4
Requires at least: 3.0
Requires PHP: 5.2.4
Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header, block-patterns
Text Domain: encuentro

-------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

/*********************
 * PALETA DE COLORES *
 ********************/
:root{
    --sora: "Sora", sans-serif;
    --verde-olivo: #c4dcc7;
    --turqueza: #378188;
    --azul: #1f4457;
}

/*********************
 * ESTILOS GENERALES *
 ********************/
/*::placeholder{
    font-weight: 700;
}*/
.top{
    width: 100%;
    height: 100px;
    background-color: var(--fondo);
}
*{
    box-sizing: border-box;
    position: relative;
    margin: 0px;
}
body{
    margin: 0 auto;
    font-family: var(--sora);
    -webkit-font-smoothing:antialiased;
    background-color: #FFF;
	color: var(--azul);
}
section{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 5vw;
    padding-bottom: 5vw;
    padding-right: 8%;
    padding-left: 8%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
section > aside{
    display: flex;
    justify-content: center;
    align-items: center;width: 100%;
	overflow: hidden;
}
section > h1{
    margin-bottom: 1vw;
}
h1{
    font-size: 2vw;
    font-weight: 400;
    text-align: center;
    width: 100%;
}
h2{
    font-size: 5vw;
    font-variation-settings: "wdth" 75;
    font-weight: 500;
    width: 100%;
}
h3{
    font-size: 1.5vw;
    font-weight: 800;
}
h4{
    font-size: 1.2vw;
    padding-top: 1vw;
    font-weight: 300;
}
p{
    font-size: 1.2vw;
    font-weight: 300;
    line-height: 1.2;
}
a{
    text-decoration: none;
    color: inherit;
}


/*********************
 *      HEADER       *
 ********************/
header{
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 2;
    background-color: #FFF;
}
header > a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100%;
    display: none;
}
header > a > img{
	width: 100%;
}
header > nav a.logo-header{
    width: 140px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
header > nav a.logo-header > svg .st0, header > nav a.logo-header > svg .st1{
    fill: #fff;
}
/*header > nav a.logo-header > img{
    height: 80%;
}*/
header > aside{
    width: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
}
header > aside > button, header > aside > a{
    font-size: 18px;
    background-color: transparent;
    border: 0px;
    margin: 5px;
    cursor: pointer;
    color: var(--color-iconos);
}
header > aside > button:hover, header > aside > a:hover{
    color: var(--color-iconos-hover);
}
header > nav{
    width:calc(100% - 100px);
    /*padding-left: 100px;*/
    height: 100%;
    display: flex;
    overflow: hidden;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--amarillo);
    z-index: 10;
}
header > nav > a{
    font-weight: 600;
    font-size: 14px;
}
header > nav > a:hover{
    color: var(--rosa);
}


/*********************
 *    BOTON MENU     *
 ********************/
input[type="checkbox"], .logo-movil{
    display:none;
}
label{
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    right: 5%;
    position:fixed;
    top: 26px;
    z-index: 3;
    box-sizing: content-box;
    padding: 10px;
    display: none;
}
label span{
    background: var(--turqueza);
    height:1px;
    margin: 3px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
label span:nth-of-type(1){
    width:50%;
}
label span:nth-of-type(2){
    width:100%;
}
label span:nth-of-type(3){
    width:75%;
}    
input[type="checkbox"]:checked ~ span:nth-of-type(1){
    transform-origin:bottom;
    transform:rotatez(45deg) translate(2px,-1px)
}
input[type="checkbox"]:checked ~ span:nth-of-type(2){
    transform-origin:top;
    transform:rotatez(-45deg)
}
input[type="checkbox"]:checked ~ span:nth-of-type(3){ 
    transform-origin:bottom;
    width:50%;
    transform: translate(30px,-11px) rotatez(45deg);
    transform: translate(13px, -2px) rotatez(45deg);
}
.solo-movil{
    display: none;
}

/*********************
 * 		INICIO 		 *
 ********************/
.inicio{
	height: 48vw;
	
}
.inicio > aside{
	width: 45%;
	height: 100%;
	background-image: url(images/ale.webp);
	background-position: center center;
	background-size: 100%;
}
.inicio > article{
	width: 45%;
	height: 100%;
	background-image: url(images/onda.webp);
	background-position: center center;
	background-size: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-left: 6%;
	padding-right: 6%;
}
.inicio *{
	text-align: left;
}
.inicio h1{
	font-size: 4vw;
	font-weight: 700;
	color: var(--turqueza);
}
.inicio h2{
	font-size: 2.2vw;
	letter-spacing: 1vw;
	font-weight: 400;
	padding-top: 5vw;
}
.inicio h3{
	font-size: 1.4vw;
	letter-spacing: .7vw;
	font-weight: 700;
	width: 100%;
	margin-top: 2vw;
	color: var(--turqueza);
}

/*********************
 * 		NOSOTROS     *
 ********************/
.nosotros > h2{
	width: 58%;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 800;
	padding-right: 4%;
}
.nosotros > p{
	width: 37%;
	padding-left: 3%;
	margin-left: 5%;
	border-left: solid 1px var(--verde-olivo);
}

/*********************
 * 		DESCANSO     *
 ********************/
.descanso{
}
.descanso > h2{
	width: 58%;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 800;
	padding-right: 4%;
}
.descanso > p{
	width: 37%;
	padding-left: 3%;
	margin-left: 5%;
	border-left: solid 1px var(--verde-olivo);
}
/*********************
 * 	   PRINCIPAL     *
 ********************/
.principal{
	padding-top: 8vw;
	padding-bottom: 8vw;
	background-color: var(--verde-olivo);
}
.principal .is-type-video{
	width: 100%;
}
.principal .wp-block-embed__wrapper{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.principal iframe{
	width: 90%;
	height: 43vw;
	/*border-radius: 3vw;
	border-radius: 2vw;*/
}
/*********************
 * 	  ENTREVISTAS    *
 ********************/
.entrevistas{
	align-items: flex-start;
	justify-content: space-between;
}
.entrevistas > h1{
	font-weight: 800;
	margin-bottom: 3vw;
	font-size: 4vw;
	margin-top: 3vw;
}
.entrevistas > article{
	width: 30%;
	margin-left: 1.5%;
	margin-right: 1.5%;
	margin-bottom: 3vw;
}
.entrevistas > article > a{
	display: block;
	width: 100%;
	height: 16vw;
	/*border-radius: 2vw;*/
	overflow: hidden;
}
.entrevistas > article > a > div{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
}
.entrevistas > article > h3{
	text-transform: uppercase;
	padding-top: .5vw;
}
/*********************
 * 	  REFLEXIONES    *
 ********************/
.reflexiones{
	background-color: var(--turqueza);
}

/*********************
 * 	  	SLIDER	     *
 ********************/
.swiper-container article{
}
.swiper-container article > a{
	display: block;
	width: 100%;
	height: 16vw;
	/*border-radius: 2vw;*/
	overflow: hidden;
}
.swiper-container article > a > div{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
}
.swiper-container article > h3{
	text-transform: uppercase;
	padding-top: .5vw;
}



/*********************
 * 	  	FOOTER	     *
 ********************/
footer{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding-top: 5vw;
	padding-bottom: 5vw;
	background: var(--verde-olivo);
	background-color: var(--turqueza);
}
footer *{
	color: #FFF;
	width: 100%;
	text-align: center;
}
footer > aside{
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
footer h3{
	font-size: 1.7vw;
	font-weight: 300;
	margin-bottom: 0px;
}
footer p{
	font-size: 1vw;
	font-weight: 300;
}
footer form{
	width: 50%;
	margin-top: 1vw;
}
footer input{
	position: relative;
	border:0px;
	height: 3vw;
	margin-top: 1vw;
	/*border-radius: 1vw;*/
	text-align: center;
	width: 24%;
	margin-left: 1%;
	margin-right: 1%;
	font-size: 1vw;
}
footer input[type=submit]{
	width: 24%;
	color: #FFF;
	font-weight: 1.2vw;
	background-color: var(--azul);
	font-weight: 300;
	cursor: pointer;
}
footer input[type=submit]:hover{
	background-color: var(--verde-olivo);
	color: #000;
}
footer div{
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 100px;
	background-image: url(images/logo-ale.svg);
	background-size: 200px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	background-color: #FFF;
}
footer h5{
	margin-top: 100px;
}


/*********************
 * 	  PAGINACION	 *
 ********************/
.pagination {
    margin: 30px 0;
    text-align: center;
    width: 100%;
}
.pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px;
    border: 1px solid var(--azul);
    text-decoration: none;
}
.page-numbers:hover{
	background-color: var(--turqueza);
	color: #FFF;
}
.pagination .current {
    background: var(--turqueza);
    color: #fff;
}

/*********************
 * 	    ENTRADA	     *
 ********************/
.entrada{
	flex-direction: column;
}
.entrada > h1{
	padding-left: 25%;
	padding-right: 25%;
	margin-bottom: 3vw;
	margin-top: 4vw;
}
.entrada > article{
	width: 40%;
	height: 20vw;
	background-size: cover;
	background-position: center center;
	background-color: #FA0;
}
.entrada > div{
	display: flex;
    justify-content: center;
	width: 100%;
	margin-top: 1vw;
	flex-wrap: wrap;
}

.gracias{
	position: relative;
    padding-top: 7vw;
    padding-bottom: 10vw;
}
.gracias h1{
	font-size: 4vw;
	text-align: center;
	color: var(--azul-oscuro);
}
.gracias h2{
	font-size: 1.5vw;
	color: var(--azul);
	text-align: center;
}
.gracias img{
	width: 20%;
	margin-bottom: 2vw;
}

.audios{
	position: relative;
	width: 80%;
	padding-left: 10%;
	padding-right: 10%;
	display: flex;
	flex-wrap: wrap;
	padding-top: 10vw;
	padding-bottom: 4vw;
	align-items: center;
	justify-content: center;
}
.audios > article{
	position: relative;
	width: 25%;
}
.audios > article > a > div{
	position: relative;
	width: 100%;
	height: 15vw;
	background-position: center center;
	background-size: cover;
}
.audios > article > a > h2{
	font-size: 1.5vw;
	margin-bottom: 0px;
}
.audios > article > p{
	font-size: 1vw;
	margin-top: 0px;
}
@media (max-width: 480px){
	section, footer{
		padding-left: 10%;
		padding-right: 10%;
		padding-top: 12vw;
		padding-bottom: 12vw;
	}
	h2{
		font-size: 6vw;
	}
	p{
		font-size: 4vw;
	}
	h3{
		font-size: 5vw;
	}
	h4{
		font-size: 3vw;
		margin-top: 2vw;
	}
	.inicio{
		height: auto;
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.inicio > article, .inicio > aside{
		width: 86%;
		height: 70vw;
	}
	.inicio > article{
		padding-left: 15%;
		padding-right: 15%;
	}
	.inicio h1{
		font-size: 8vw;
	}
	.inicio h2{
		font-size: 5vw;
	}
	.inicio h3{
		font-size: 2vw;
	}

	.principal iframe {
	    width: 100%;
	    height: 47vw;
	}
	.nosotros > h2, .descanso > h2{
		width: 100%;
		padding: 0px;
		margin-bottom: 4vw;
	}
	.nosotros > p, .descanso > p{
		width: 100%;
		padding: 0px;
		margin: 0px;
		border: 0px;
	}
	.descanso{
		padding-bottom: 0px;
	}
	.swiper-container article > a{
		height: 50vw;
		/*border-radius: 3vw;*/
	}
	.swiper-container article > h3{
		font-size: 5vw;
		margin-top: 2vw;
	}
	
	footer h3{
		font-size: 5vw;
	}
	footer p{
		font-size: 4vw;
		margin-top: 4vw;
	}
	footer form{
		width: 100%;
	}
	footer input{
		width: 100%;
	    margin-left: 0%;
	    margin-right: 0%;
	    font-size: 4vw;
	    height: 10vw;
	    margin-top: 5vw;

	}
	label{
		display: flex;
	}
	header{
		justify-content: flex-start;
	}
	header > a{
		display: flex;
	}
	header > nav{
		position: fixed;
		top: 100px;
		left: 0px;
		width: 100%;
		height: 100%;
		background-color: var(--verde-olivo);
		border-radius: 0px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		padding: 0px;
		padding-bottom: 100px;
		align-content: center;
		/*display: none;*/
		left: -100%;
	}
	header > nav > a.logo-header{
		display: none;
	}
	header > nav > a{
		width: 100%;
		text-align: center;
		font-size: 6vw;
		line-height: 3;
	}
	
	#contenido h1{
		padding-top: 25vw;
		font-size: 6vw;
	}
	#contenido p{
		font-size: 4vw;
		font-weight: 300;
	}
	#contenido iframe{
		width: 100%;
    	margin-left: 0%; 
    	height: 45vw;
	}
	.audios{
		padding-top: 30vw;
	}
	.audios > article{
		width: 100%;
	}
	.audios > article > a > div{
		height: 50vw;
	}
	.audios > article > a > h2{
		font-size: 5vw;
	}
	.audios > article > p{
		font-size: 4vw;
	}

	.gracias h1{
		font-size: 6vw;
		text-align: center;
		color: var(--azul-oscuro);
	}
	.gracias h2{
		font-size: 4vw;
		font-weight: 300;
		color: var(--azul);
		text-align: center;
		margin-top: 4vw;
	}
	.gracias img{
		width: 80%;
		margin-bottom: 7vw;
	}
	.entrevistas > article {
	    width: 100%;
	    margin-left: 0%;
	    margin-right: 0%;
	    margin-bottom: 5vw;
	}
	.entrevistas > article > a{
		height: 45vw;
	}
	.entrevistas > h1 {
	    margin-bottom: 6vw;
	    font-size: 9vw;
	    margin-top: 0vw;
	}
	.entrada > h1 {
		padding-left: 0%;
		padding-right: 0%;
		margin-bottom: 7vw;
		margin-top: 0vw;
		font-size: 6vw;
	}
	.entrada > div{
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.wp-block-embed iframe{
		height: 50vw;
	}
}

a{
	text-decoration: none;
	color: inherit;
}
#primary, #secondary{
	display: none;
}