/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 10 version
*/

* {
	padding:0;
	margin:0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 41px;
}

body {
	max-width: 1800px;
	margin: auto;
}

@font-face {
	font-family: "Gabriel";
	src: url("../fonts/Gabriel-Sans-Bold.otf");
}

@font-face {
	font-family: "Mirage";
	src: url("../fonts/MADE Mirage Medium.otf");
}

@font-face {
	font-family: "Miracle";
	src: url("../fonts/Miracle Personal.otf");
}

@font-face {
	font-family: "PPTelegraf-Regular";
	src: url("../fonts/PPTelegraf-Regular.otf");
}

@font-face {
	font-family: "PPTelegraf-UltraBold";
	src: url("../fonts/PPTelegraf-UltraBold.otf");
}

header {
	max-width: 1800px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	position: fixed;
	top: 0;
	width: 100%;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #ffffff;
	z-index: 5;
	/*border-bottom: 1px solid #FF8BFF;*/
	-webkit-box-shadow: rgb(50 50 93 / 25%) 0px 7px 36px -7px, rgb(0 0 0 / 30%) 0px 6px 5px -8px;
	        box-shadow: rgb(50 50 93 / 25%) 0px 7px 36px -7px, rgb(0 0 0 / 30%) 0px 6px 5px -8px;
}

header a {
	text-decoration: none;
}

header h1 {
	color: #FF8BFF;

	font-family: "Gabriel";
	margin-left: 15px;

	font-size: 24px;
	display: inline-block;
	line-height: 34px;
	height: 29px;
}

/**/

nav {
	position: absolute;
	top: 40px;
	left: 0px;
	width: 100%;
	background-color: #EDF0EF;
	z-index: 1;
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}
/*nav ul li a:target #pepe {
	flex-direction: row;
}*/

nav ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

nav ul li {
	width: 100%;
}

nav ul li a {
	display: inline-block;
	text-decoration: none;
	color: #165DFF;
	width: 100%;
	padding: 20px;
}

/*nav ul li:nth-of-type(1) a {
	padding-bottom: 0;
}

nav ul li:nth-of-type(2) a {
	padding-bottom: 0;
}*/

#btn-menu{
	display: none;
}

#btn-menu:checked ~ nav {
	-webkit-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	        transform: translateX(0%);
}

.icon-bars2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: 15px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

/* burger */

#nav-icon2 {
	width: 30px;
	height: 20px;
	position: relative;
	/*margin: 50px auto;*/
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	    transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#nav-icon2 span {
	display: block;
	position: absolute;
	height: 4px;
	width: 50%;

	background: #D2D2D0;
	border-radius: 9px;

	opacity: 1;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	    transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}


#nav-icon2 span:nth-child(even) {
	left: 50%;
	border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
	left:0px;
	border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
	top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
	top: 8px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
	top: 16px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	    transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	    transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
	left: 3px;
	top: 3px;
}

#nav-icon2.open span:nth-child(2) {
	left: calc(50% - 3px);
	top: 3px;
	}

#nav-icon2.open span:nth-child(3) {
	left: -50%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
	left: 100%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
	left: 3px;
	top: 14px;
}

#nav-icon2.open span:nth-child(6) {
	left: calc(50% - 3px);
	top: 14px;
}

/*---END BURGER------*/

/*.estrella-nav {
	display: none;
}*/


.estrella-nav {
	width: 40px;
	height: 40px;
	margin-right: 5px;
	display: block;
}

video {
	width: 100%;
	margin-bottom: 6px;
}

.carousel {
	overflow: hidden;
}

.carousel ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	overflow: auto;
}

.corazon-autor {
	font-family: "Gabriel";
	color: #FF8BFF;
	text-align: center;
	font-size: 11px;
}

.carousel ul li {
	min-width: calc((100vw - 6px)/2);
	margin-right: 6px;
}

.carousel ul li:last-of-type {
	margin-right: 0;
}

.carousel ul li img {
	width: 100%;
	vertical-align: bottom;
}

.corazon-text {
	font-family: "Mirage";
	color: #9A9896;
	text-align: center;
	margin-bottom: 6px;
	width: 70%;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	font-size: 18px;
}

.corazon {
	background-color: #F1F1F1;
	background-image: url("../img/corazon.png");
	width: 100vw;
	height: calc(100vw * 0.5787037);
	max-width: 1080px;
	max-height: 625px;
	background-size: cover;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.contact {
	padding: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.contact p {
	color: #FF8BFF;
	font-family: "Mirage";
	font-size: 35px;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}

.contact a {
	color: #165DFF;
	text-decoration: none;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}

.contact a:hover {
	color: #FF8BFF;
}

.contact img {
	max-width: 40px;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	margin-top: 9px;
}

.margen-blaco {
	height: 10px;
}

.shine {
	background-image: url("../img/fondo-shine.png");
	width: 100vw;
	height: calc(100vw * 0.6);
	max-width: 1080px;
	max-height: 648px;
	background-size: cover;
	/*background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center; */
	/*height: 180px;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.shine h2 {
	color: #7FC4FF;
	font-family: "Miracle";
	font-size: 45px;
	font-weight: 300;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	margin-bottom: 30px;
	line-height: 44px;
}

.redes {

	/*background-image: url("../img/footer-gif-mobile.gif");
	width: 100vw;
	height: calc(100vw * 0.74166667);
	max-width: 480px;
	max-height: 356px;
	background-size: cover;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 30px;
}

.redes img {
	width: 38%;
	max-width: 440px;
	    padding: 18px 0;
}

.redes ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.redes ul li a{
	display: inline-block;
	width: 30px;
	height: 30px;
	max-width: 90px;
	max-height: 90px;
	background-size: cover;
	margin: 0 7px;
	/*font-size: 0;*/
	cursor: pointer;
}

.redes ul li:nth-of-type(1) a {
	background-image: url("../img/redes/instagram.png");
}
.redes ul li:nth-of-type(2) a {
	background-image: url("../img/redes/spotify.png");
}
.redes ul li:nth-of-type(3) a {
	background-image: url("../img/redes/whatsapp.png");
}



footer p {
	color: #7FC4FF;
	text-align: center;
	font-size: 10px;
	margin-bottom: 25px;
}

footer p a {
	color: #7FC4FF;
	text-decoration: none;
}

.video-tablet {
	display: none;
}

main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-top: 41px;
}

.tablet-footer {
	display: none;
}


@media screen and (min-width: 445px) {
	.shine h2 {
    font-size: 58px;
    line-height: 55px;
   }
}
@media screen and (min-width: 560px) {
	.shine h2 {
    font-size: 69px;
    line-height: 63px;
}
}



@media screen and (min-width: 600px) {

	header {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}

	header h1 {
		background-image: none;
		width: inherit;
	}

	nav {
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
		position: relative;
		top: 0;
		width: inherit;
		background-color: transparent;
	}

	nav ul {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	nav ul li {
		width: initial;
	}

	.icon-bars2 {
		display: none;
	}

	.estrella-nav {
		width: 40px;
		height: 40px;
		margin-right: 15px;
		    margin-bottom: 4px;
		display: block;
	}

	.carousel ul li {
		min-width: calc((100% - 12px)/3);
	}

	.video-tablet {
		display: block;
	}

	.video-mobile {
		display: none;
	}

	.video-tablet {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}

	.carousel {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
		margin-bottom: 6px;
	}

	.corazon {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
	}

	.contact {
		-webkit-box-ordinal-group: 5;
		    -ms-flex-order: 4;
		        order: 4;
		padding: 90px;
	}
    
	.margen-blaco{
		-webkit-box-ordinal-group: 6;
		    -ms-flex-order: 5;
		        order: 5;
	}
	
	.shine {
		-webkit-box-ordinal-group: 7;
		    -ms-flex-order: 6;
		        order: 6;
	}

	.redes {
		-webkit-box-ordinal-group: 8;
		    -ms-flex-order: 7;
		        order: 7;
	}

	.mobile-footer {
		display: none;
	}

	.corazon-text {
		font-size: 21px;
		    margin-bottom: 16px;
		    width: 100%;
	}

	.corazon-text br {
		display: none;
	}

	.corazon-autor {
		font-size: 19px;
		    margin-bottom: 25px;
	}

	.contact p {
		font-size: 45px;
	}

	.shine h2 {
		font-size: 87px;
		line-height: 82px;
	}

	.tablet-footer {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: space-evenly;
		    -ms-flex-pack: space-evenly;
		        justify-content: space-evenly;
		/*flex-wrap: wrap;*/
		margin: 0 15px 35px;
	}
	.box {
		font-size: 12px;
	}

	.box-1 span {
		display: block;
		background-image: url("../img/cara-azul.png");
		width: 35px;
		height: 35px;
		max-width: 90px;
		max-height: 90px;
		background-size: cover;
		margin-bottom: 6px;
	}

	.box-1 {
			font-family: "PPTelegraf-Regular";
			color: #7FC4FF;
			/*width: 33.3333%;*/
	}

	.box-2 {
		font-family: "PPTelegraf-UltraBold";
		color: #7FC4FF;
		-ms-flex-item-align: end;
		    align-self: flex-end;
		line-height: 21px;
		/*width: 33.3333%;*/
		text-align: left;
		line-height: 13px;
	}

	.box-3 {
		font-family: "PPTelegraf-Regular";
		color: #7FC4FF;
		-ms-flex-item-align: end;
		    align-self: flex-end;
		/*width: 33.3333%;*/
		text-align: left;
	}

	.box-4 {
		font-family: "PPTelegraf-UltraBold";
		color: #7FC4FF;
		-ms-flex-item-align: end;
		    align-self: flex-end;
		line-height: 21px;
		/*width: 100%;*/
		text-align: left;
		/* margin-top: 15px; */
		line-height: 13px;
	}

	.box-4 a {
		font-family: "PPTelegraf-Regular";
		color: #7FC4FF;
		text-decoration: none;

	}

	.box-4 a:hover {
		color: #FF8BFF;
	}

	.redes ul li a {

    width: 38px;
    height: 38px;
  }

  .redes {
		margin-bottom: 60px;
	}
}

@media screen and (min-width: 750px) {

	.shine h2 {
	    font-size: 99px;
	    line-height: 95px;
	}

	.redes {
		margin-bottom: 70px;
	}

}

@media screen and (min-width: 780px) {

	.box {
		font-size: 15px;
	}

	.box-2, .box-4 {
		line-height: 17px;
	}

	.corazon-text {
    font-size: 26px;
}

}

@media screen and (min-width: 820px) {

	.redes ul li a {
		width: 44px;
		height: 44px;
	}

	.redes {
		margin-bottom: 80px;
	}
}

@media screen and (min-width: 840px) {
	.box {
	    font-size: 16px;
	}
}

@media screen and (min-width: 890px) {

	.shine h2 {
		font-size: 118px;
		line-height: 108px;
	}

	.corazon-text {
    	font-size: 30px;
	}
}

@media screen and (min-width: 1005px) {
	.shine h2 {
		font-size: 137px;
		line-height: 130px;
	}
}

@media screen and (min-width: 1050px) {
	
	.corazon-text {
		font-size: 38px;
		width: 100%;
	}

	.corazon-autor {
		font-size: 30px;
		letter-spacing: 1px;
	}

	.contact p {
		font-size: 65px;
	}

	.contact a {
		font-size: 23px;
	}

	.redes ul li a {
		width: 54px;
		height: 54px;
	}
    
	.box-1, .box-2, .box-3, .box-4 {
		width: auto;
	}

	.box-3 {
		text-align: center;
	}

	footer {
		max-width: 990px;
		margin: auto;
	}

	.redes {
		margin-bottom: 110px;
	}
}

@media screen and (min-width: 900px) {

	.carousel ul li {
		min-width: calc((100% - 18px)/4);
	}

}

@media screen and (min-width: 1079px) {

	.corazon {
		background-color: #F1F1F1;
		background-image: url("../img/corazon-desktop.png");
		width: 100vw;
		height: calc(100vw * 0.42777778);
		max-width: 1800px;
		max-height: 770px;
	}

	.shine {
		background-image: url("../img/fondo-shine-desktop.png");
		width: 100vw;
		height: calc(100vw * 0.43888889);
		max-width: 1800px;
		max-height: 790px;
	}

	.shine h2 {
		font-size: 123px;
		line-height: 113px;
		margin-bottom: 40px;
	}

}


@media screen and (min-width: 1100px) {

	.box-2 br, .box-4 br {
		display: none;
	}
}

@media screen and (min-width: 1200px) {

	.carousel ul li {
		min-width: calc((100% - 24px)/5);
	}

}

@media screen and (min-width: 1400px) {

	.shine h2 {
		font-size: 148px;
		line-height: 140px;
	}

	.redes img {
		padding: 73px 0;
	}

	.corazon-text {
		font-size: 49px;
	}

	.contact {
		padding: 170px;
	}

	
	.contact img {
		max-width: 75px;
	}

	.contact p {
		font-size: 105px;
	}

	.contact a {
		font-size: 38px;
	}

	.redes {
		margin-bottom: 130px;
	}
}

@media screen and (min-width: 1500px) {

	.shine h2 {
    	margin-bottom: 85px;
	}
}

@media screen and (min-width: 1700px) {
	
	.shine h2 {
		font-size: 178px;
		line-height: 154px;
		margin-bottom: 107px;
	}
}