/* DECLARACION DE ESTILOS GENERALES */

@import url('https://fonts.cdnfonts.com/css/avenir');
@import url('https://fonts.cdnfonts.com/css/noland');
@import url('https://fonts.googleapis.com/css2?family=Enriqueta:wght@400;500;600;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root{
	--font-avenir: 'Avenir', sans-serif;
	--font-noland: 'Noland', sans-serif;
	--font-montserrat: "Montserrat", sans-serif;
}


*{
  /* border: 1px solid red; */
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	/* border: 1px solid #000; */
}

html,
body{
	position: relative;
	font-size: 14px;
	font-family: "Enriqueta", serif;
	position: relative;
  scroll-behavior: smooth;
	overflow-x: hidden;
}


/* HEADER */
#menuDesktop {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
	width: 380px;
	z-index: 5;
	padding: 20px 10px;
	border-radius: 50px;
	background: rgba(0, 0, 0, .6);
}

#menuMobile, #menuHamburguesa{
	display: none;
}

#menuDesktop{
	display: flex;
	justify-content: center;
	color: #fff;
}

#menuDesktop .logoNav{
	width: 20%;
	display: flex;
  justify-content: center;
  align-items: center;
}
#menuDesktop .logoNav img{
	width: 50px;
}

#menuDesktop .contenedorLinksNavs{
	width: 80%;
	margin: auto;
}

#menuDesktop .linksNavs{
	width: 100%;
  padding: 0;
  margin: 0;
	display: flex;
	justify-content: space-around;
}

#menuDesktop .linksNavs li{
	list-style: none;
}

#menuDesktop .linksNavs li a{
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-family: var(--font-montserrat);
}

/* INICIO */
#banner{
	width: 100%;
	height: 100%;
}

#swiperBanner {
  width: 100%;
  height: 100%;
}


#swiperBanner .swiper-slide .fondoBlack{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	background: linear-gradient(180deg,rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.48) 56%);
}

#swiperBanner .swiper-slide .textoBanner{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	white-space: break-spaces;
  text-align: center;
	transform: rotate(-5deg);
}

#swiperBanner .swiper-slide .textoBanner h1 span {
  display: inline-block;
  background: #ed1e79;
  padding: 5px 10px;
  transform: skew(-10deg);
	font-family: var(--font-noland);
	font-size: clamp(1.4rem, 1.2667rem + 0.7111vw, 1.8rem);
}

#swiperBanner .swiper-slide .textoBanner h1{
	margin: -50px;
}

#swiperBanner .swiper-slide .textoBanner h1 span span {
  transform: skew(10deg);
}

#swiperBanner .swiper-slide .textoBanner .logoBanner{
	/* max-width: 320px; */
	max-width: 400px;
	margin: -15px;
}

#swiperBanner .swiper-slide .imagenFondoBanner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: center top;
	background: #000000;
	background: linear-gradient(180deg,rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.48) 56%);
}

#swiperBanner .swiper-slide .sampleMovieGenerico{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* SECCION IDEA VAP */
#ideavap{
	height: auto; 
	width: 100%; 
	background-size: cover; 
	background-position: center; 
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #fff;
	padding: 50px 0;
}

#ideavap .columna-izquierda p{
	font-size: clamp(1.5rem, 1.3333rem + 0.8889vw, 2rem);
	/* font-size: clamp(1.6rem, 1.3333rem + 1.4222vw, 2.4rem); */
	white-space: break-spaces;
  font-family: var(--font-noland);
  margin-left: 20px;
}

#ideavap .columna-derecha{
	width: clamp(300px, 45%, 1080px);
	height: clamp(300px, 85vh, 600px);
	position: relative;
	display: flex; 
	flex-direction: column; 
	justify-content: space-around;
}

/* 

	300px → altura mínima (nunca será menor)
	50vh → valor preferido (fluido según el viewport)
	600px → altura máxima (nunca será mayor)

*/


#ideavap .galeria{
	width: 100px;
 	height: 100px;
  display: flex;
}

#ideavap .galeria img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#contenedorGals{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  overflow: hidden;
}

.swiperGals {
  max-width: 300px;
	height: auto;
  margin: inherit;
	/* aspect-ratio: 4 / 3; */
}

.swiperGals .swiper-slide {
  width: 100%;
  height: 100%;
}

.swiperGals .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
	border-radius: 6px;
}

.swiper-1{
	position: relative;
  left: -70px;
	transform: rotate(-1deg);
	height: 200px;
}

.swiper-2 {
  position: relative;
  right: -25%;
	top: -60px;
  /* top: -30px; */
  transform: rotate(-3deg);
	height: 200px;
}

.swiper-3{
	position: relative;
	overflow: visible !important;
	top: -70px;
  /* top: -35px; */
	height: 200px;
}

#ideavap .columna-derecha .rrss{
	position: absolute;
  bottom: -40px;
  right: -130px;
  height: 170px;
  width: 140px;
  z-index: 1;
}

#ideavap .columna-derecha .rrss .yt{
	width: 60px;
}
#ideavap .columna-derecha .rrss .tt{
	width: 60px;
  position: absolute;
  right: 0px;
  transform: translate(-55%, 64%);
}
#ideavap .columna-derecha .rrss .inst{
	width: 90px;
  position: absolute;
  bottom: -10px;
  left: -15px;
}

/* SECCION VIDEOS */

.filtroCategoria{
	background: #000;
	margin: 30px 0;
}
.filtroCategoria h3{
	color: #c4c4c4;
	font-family: var(--font-noland);
	margin-bottom: 0;
	font-size: 2rem;
}

.btnPadreFiltro select{
	width: 100%;
	padding: 5px 0px;
  background: transparent;
  color: #fff;
  border-radius: 5px;
  border: 2px solid;
  text-align: center;
	text-transform: uppercase;
	font-family: var(--font-montserrat);
}

.btnPadreFiltro select option {
  background-color: white;
  color: black;
  padding: 10px;
}

.botoneraFiltro{
	width: clamp(300px, 70%, 1080px);
	/* margin: auto; */
}

.cardPadre .cardInterior{
	position: relative;
}

.cardPadre .cardInterior h4{
	position: absolute;
  left: 20px;
  top: 0;
  background-color: #ed1e79;
  color: #fff;
  transform: rotate(-5deg);
	padding: 0px 25px;
	font-family: var(--font-noland);
	z-index: 1;
	-webkit-box-shadow: 5px 5px 9px -1px #000000; 
	box-shadow: 5px 5px 9px -1px #000000;
}

.cardPadre a{
	text-decoration: none;
	color: #000000;
}

.cardPadre .cardInterior .cardImg{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cardPadre .cardInterior .cardImg .imgCard{
	border-radius: 8px;
	font-family: var(--font-montserrat);
}

.cardPadre .cardInterior .cardImg .capaImg{
	background: rgba(0, 0, 0, .3);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 8px;
}

.cardPadre .cardInterior .cardImg .playVideo{
	background-image: url('https://vamosalpiloto.cl/wp-content/uploads/2026/04/icono-play-vap.svg');
	width: 50px;
  height: 50px;
  position: absolute;
}

/* .cardPadre .cardInterior .cardImg .playVideo{
	width: 50px;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

.cardPadre .cardInterior .card-body p{
	font-family: var(--font-montserrat);
	font-size: .9rem;
	line-height: 16px;
	margin: 0;
	margin-top: 8px;
}

#videos .aPadre{
	font-family: var(--font-noland);
	font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
	color: #000;
	text-decoration: none;
}

#videos .aPadre .aInterior{
	text-decoration: none;
	color: #000;
	position: relative;
}

#videos .aPadre .aInterior::after{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: -8px;
	right: 0;
}

#manitaClick{
	width: 30px;
	margin: 0 5px;
	opacity: 1;
	transition: all .3s ease;
}

#videos .aPadre .logo-yt{
	width: 100px;
	margin-bottom: 5px;
}

/* SECCION ESTADISTICAS */
#estadisticas{
	background: #ed1e79;
	color: #fff;
}

#estadisticas h2{
	font-family: var(--font-noland);
	font-size: clamp(1.5rem, 1.1667rem + 1.7778vw, 2.5rem);
}

/* SECCION FORMULARIO */
#sumatevap{
  height: auto; 
	position: relative;
  background: #ed1e79;
	display: flex;
  justify-content: center;
  align-items: center;
	padding: 50px 0;
}

#fondoFiguras {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}

#fondoFiguras img{
	width: 100%;
	height: 100%;
  object-fit: fill;
  object-position: center top;
}

#sumatevap .textoForms,
#sumatevap .formsvap{
	position: relative;
}

#sumatevap .textoForms h2{
	color: #fff;
	font-size: 2.1rem;
	font-family: var(--font-noland);
}

#sumatevap .textoForms p a{
	text-decoration: none;
	color: #fff;
}

#sumatevap .textoForms p{
	font-size: 1.6rem;
	line-height: 30px;
	color: #fff;
	font-family: var(--font-noland);
}

.contenedorStats, .stats{
	background: #fff;
	border-radius: 10px;
	color: #000;
} 

.contenedorStats{
	-webkit-box-shadow: 8px 11px 0px 1px #C4C4C4; 
	box-shadow: 8px 11px 0px 1px #C4C4C4;
	border-radius: 10px;
}

.contenedorStats .ads .adsContenedor .adsCards img{
	width: 70px;
	height: 70px;
	margin-bottom: 2px;
}

.infoStatsGrupo .infoStatsGrupoInt .col-izquierda .cuadro1{
	background: #3996D2;
	width: 15px;
	height: 15px;
	margin-right: 4px;
}
.infoStatsGrupo .infoStatsGrupoInt .col-izquierda .cuadro2{
	background: #8F5AA0;
	width: 15px;
	height: 15px;
	margin-right: 4px;
}
.infoStatsGrupo .infoStatsGrupoInt .col-izquierda .cuadro3{
	background: #52B26E;
	width: 15px;
	height: 15px;
	margin-right: 4px;
}
.infoStatsGrupo .infoStatsGrupoInt .col-izquierda .cuadro4{
	background: #E74B3C;
	width: 15px;
	height: 15px;
	margin-right: 4px;
}

.infoStatsGrupoInt:nth-child(1) p{
	color: #518ac8;
}
.infoStatsGrupoInt:nth-child(2) p{
	color: #8F5AA0;
}
.infoStatsGrupoInt:nth-child(3) p{
	color: #52B26E;
}
.infoStatsGrupoInt:nth-child(4) p{
	color: #E74B3C;
}

.infoStatsGrupoInt p{
	font-family: var(--font-montserrat);
	font-weight: 600;
}

.infoStatsGrupo .infoStatsGrupoInt p{
	margin: 0;
}
.adsCards p{
	font-family: var(--font-montserrat);
	font-weight: bold;
	margin: 0;
	margin-top: 5px;
}
.adsCards:nth-child(1) p{
	/* color: #518ac8; */
	color: #a038d6;
}
.adsCards:nth-child(2) p{
	color: #000;
}
.adsCards:nth-child(3) p{
	color: #52B26E;
}
.adsCards:nth-child(4) p{
	color: #E74B3C;
}
.contenedorStats h3, 
.ads p
{
	text-transform: uppercase;
	font-family: var(--font-noland);
	color: #ed1e79;
	margin: 0;
}

.procentajeH p, 
.procentajeM p{
	margin: 0;
	line-height: 15px;
	font-family: var(--font-montserrat);
	font-weight: 600;
}

.procentajeH {
	margin-bottom: 8px;
	color: #518ac8;
}

.procentajeM p{
	color: #fbb03b;
}



/* FOOTER */

footer{
	background: #333333;
	padding: 60px 0;
	font-family: var(--font-montserrat);
}

footer p{
	margin: 0;
	color: #fff;
	text-transform: uppercase;
}

footer .col-izquierda img{
	width: 200px;
}
footer .col-derecha{gap: 20px;}
footer .col-derecha .icons{
	gap: 10px;
  display: flex;
}
footer .col-derecha .icons a img{
	width: 25px;
}


/* ESTILOS MOBILES */
@media only screen and (max-width: 481px){
	
	/* ----------------- HEADER MOBILE ----------------- */
	#menuDesktop{
		display: none;
	}
	#menuMobile{
		display: block;
	}

	#menuHamburguesa{
		display: block;
    position: fixed;
    z-index: 3;
    color: #fff;
    right: 20px;
    top: 30px;
    width: 45px;
    height: 30px;
	}

	.lineaUno {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: aliceblue;
		border-radius: 10px;
	}

	.lineaDos {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 5px;
    background: aliceblue;
		border-radius: 10px;
	}

	.lineaTres {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: aliceblue;
		border-radius: 10px;
	}

	#cerrarMenu{
		position: absolute;
    right: 20px;
    top: 35px;
    width: 50px;
    height: 5px;
    /* background: aliceblue; */
	}

	.lineUno{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 5px;
		background-color: #fff;
		transform: rotate(45deg);
		border-radius: 10px;
	}
	.lineDos{
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 5px;
		background-color: #fff;
		transform: rotate(-45deg);
		border-radius: 10px;
	}

	#menuMobile.activaMenu{
		right: 0;
	}

	#menuMobile{
		overflow: hidden;
		position: fixed;
		width: 100%;
    height: 100vh;
    top: 0;
		right: -100%;
    border-radius: 0;
    bottom: 0;
		margin: 0;
		background: #ed1e79;
		z-index: 5;
		display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
		transition: .3s ease;
	}

	#menuMobile .logoNavMobile{
		width: 60%;
	}
	#menuMobile .logoNavMobile img{
		width: 100%;
		height: auto;
		margin-bottom: -30px;
	}

	#menuMobile .contenedorLinksMobile ul{
		padding: 0;
		margin: auto;
		position: relative;
		display: flex;
		flex-direction: column;
		gap: 35px;
	}

	#swiperBanner .swiper-slide .textoBanner .logoBanner{
		max-width: 380px;
	}

	#menuMobile .contenedorLinksMobile ul li{
    list-style: none;
		text-align: center;
		position: relative;
	}

	#menuMobile .contenedorLinksMobile ul li::after{
		content: '';
    display: block;
    width: 320px;
    height: 1px;
    background: #fff;
    left: 0;
    bottom: 0;
    opacity: .5;
	}

	#menuMobile .contenedorLinksMobile ul li a{
		text-decoration: none;
    list-style: none;
    font-size: 2.5rem;
		color: #fff;
		font-family: var(--font-montserrat);
		text-transform: uppercase;
	}

	.rrssmobile p{
		text-transform: uppercase;
		color: #fff;
		font-size: 1rem;
		font-family: var(--font-montserrat);
	}

	.rrssmobile .rs a img{
		width: 30px;
		height: auto;
	}

	/* ----------------- SECCION IDEA DE VAP ----------------- */
	#ideavap .columna-derecha{
		height: clamp(200px, 50vh, 300px);
		width: 100%;
    margin: auto;
		padding-top: 30px;
	}

	.swiperGals {
    width: 50%;
	}
	.swiper-1, .swiper-2, .swiper-3{
		overflow: visible !important;
	}

	.swiper-3{
		top: -60px;
    left: -30px;
	}

	#ideavap .columna-derecha .rrss{
		bottom: -70px;
	}

	#ideavap .columna-derecha .rrss {
    right: -120px;
    height: 160px;
    width: 120px;
	}	
	#ideavap .columna-derecha .rrss .tt{
		width: 55px;
		transform: translate(-55%, 64%) rotate(20deg);
	}
	#ideavap .columna-derecha .rrss .inst{
		width: 80px;
    bottom: 10px;
    left: -25px;
    transform: rotate(18deg);
	}
	#ideavap .columna-derecha .rrss .yt {
    width: 56px;
    transform: rotate(18deg);
    right: -5px;
    position: relative;
	}

	
	#ideavap .columna-izquierda p {
    white-space: normal;
		margin: auto;
    text-align: center;
	}

	#ideavap{
		padding: 20px 0px 60px 0px;
	}

	/* ----------------- VIDEOS VAP ----------------- */

	#videos .row{
		justify-content: center;
	}
	.btn-filtro{
		width: 60%;
	}

	.btnPadreFiltro select{
		width: 100%;
		margin-top: 20px;
	}

	.botoneraFiltro{
		width: 100% !important;
		left: 0;
		margin: auto;
		position: relative;
	}

	/* ----------------- ESTADISTICAS VAP ----------------- */
	.ads, .statsHm{ margin: 30px 0; }

	/* ----------------- FOOTER ----------------- */
	footer .col-izquierda{
		text-align: center;
		padding: 15px 0;
	} 
	footer .col-derecha{
		justify-content: center !important;
	}

}

@media screen and (max-width: 991px){
	#ideavap .columna-izquierda p{
		white-space: normal;
	}
	#ideavap .columna-derecha{
		margin: auto;
	}

	.swiperGals{
		max-width: 290px;
    height: 160px;
    margin: inherit;
		/* aspect-ratio: unset; */
	}

	.botoneraFiltro{
		left: 0;
		position: relative;
		margin: auto;
		margin-top: 10px;
	}
}

/* MENSAJE PARA EL FILTRO SI NO ENCUENTRA NADA */
.sinResultados {
  width: 100%;
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 1.8rem;
	font-family: var(--font-montserrat);
}