@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');

/*---------GEENERAL SE APLICA A TODOS LOS HTMLS------*/
* {
	margin: 0px;
	padding: 0px;
	font-family: "Nunito";
	list-style: none;
	text-decoration: none;
	
}
body{
	background-image: url("img/fondo/fondo.svg");
	background-position: top left;
	background-size:100%;
}
/*-----------------header general---------------*/

header{
	width: 100%;
	height: 90px;
	padding: 10px 3%;
	background:#FEABD9;
	position: fixed;
	z-index: 1000;
	box-sizing: border-box;
}
/*----colores background------*/
.fondo-fucsia {
	background-color: #FF20AC;
}
.fondo-blanco {
	background-color: white;
}
/*-------------------------------MENU---------------------------------*/

/*------animacion logo-----*/
.logo:hover {
	animation: logo-movimiento normal 10s  1 ease;
}
@-webkit-keyframes logo-movimiento {
	0% {
		transform: scale3d(1, 1, 1);
	}
	1%, 2% {
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	3%, 5%, 7%, 9% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	4%, 6%, 8% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	10%, 100% {
		transform: scale3d(1, 1, 1);
	}
}
/*--------menu botones desktop-----------*/
.menu{
	gap: 31px;
	display: flex;
	align-items: center;
}
.nav {
	display: flex;
	gap: 20px;
}
.botones-menu {
	gap: 20px;
	display: flex;
	align-items: center;
}
.botones-menu a {
	width: 150px;
	height: 36px;
	padding: 6% 30%;
	font-weight: 800;
	font-size: 1.25em;
	text-align: center;
	color: #0E6372;
	background-color: #92DDEA;
	border: 1px solid black;
	border-radius: 20px;
	box-sizing: border-box;
}
.botones-menu a {
	display: flex;
	align-items: center;
	justify-content: center;
}
/*----------buscador-----------*/
.buscador {
	width: 100%;
}
.form-search input[type=text] {
	box-sizing: content-box;
	font-size: 100%;
	border: solid 1px black;
	padding: 9px 10px;
	border-radius: 22px;
}
.form-search input[type=text]:focus {
	width: 100%;
	max-width: 700px;
	background-color: white;
}
/*----------menu de perfil desktop------------*/

.nav-mi-perfil {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.flecha-contenedor li {
	width: 30px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.flecha-mi-perfil {
	width: 10px;
	height: 10px;
	border-radius: 2px;
	border-top: solid 4px #0E6372;
	border-right: solid 4px #0E6372;
	transform: rotate(135deg);
	transition: all 0.2s ease;
}
.nav-mi-perfil ul ul {
	display: none;
	position: absolute;
	background-color: #FEABD9;
	top: 71px;
	right: 0;
	border-radius: 5px;
	padding: 20px 0px 0px
}
.nav-mi-perfil ul ul li {
	height: auto;
	width: auto;
	padding: 25px 45px 10px 25px;
	transition: all 0.15s ease;
	justify-content: flex-start;
}

.nav-mi-perfil ul ul a {
	color: black;
	font-size: 1.2em;
	font-weight: 400;
	transition: all 0.15s ease;
}
.nav-mi-perfil ul ul li:hover {
	background-color: #FF20AC;
}

.nav-mi-perfil ul ul li:hover a {
	font-weight: 700;
	color: white;
}
.nav-mi-perfil ul li:hover ul {
	display: block;
}
.nav-mi-perfil li:hover .flecha-mi-perfil {
	transform: rotate(315deg);
	border-color: #FF20AC; 
}
/*--------MENU HAMBURGUESA MOBILE-----------*/
.checkbtn {
	font-size: 30px;
	color: white;
	float: right;
	cursor:pointer;
	display: none;
}
#check, .iso-mobile, .menu-mobile {
	display: none;
}
/*----------------FOOTER----------------------*/
.footer-flex {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}
footer {
	width: 100%;
	height: 50px;
	font-weight:700;
	padding: 16px 0px;
	color: #0E6372;
	background-color:#92DDEA;
}
#posicion-texto-footer {
	padding: 0px 0px 0px 64px;
	font-size: 1.0625em;
}
#posicion-redes-footer {
	padding: 0px 64px 0px 0px;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.redes {
	padding: 0px 8px;
}
/*---------diseño del scroll horizontal--------*/
.lista-ferias::-webkit-scrollbar, .galeria-carrusel::-webkit-scrollbar, .trabajos-carrusel::-webkit-scrollbar {
	width: 10px;
	height: 20px;
}
.lista-ferias::-webkit-scrollbar:horizontal, .galeria-carrusel::-webkit-scrollbar:horizontal, .trabajos-carrusel::-webkit-scrollbar:horizontal {
	background-color: #FF20AC;
	border-radius: 10px;
	border: 1px solid black;
}
.lista-ferias::-webkit-scrollbar-thumb:horizontal, .galeria-carrusel::-webkit-scrollbar-thumb:horizontal, .trabajos-carrusel::-webkit-scrollbar-thumb:horizontal {
	background: #92ddea;
	border-radius: 10px;
	border: 1px solid black;
}

/*------animacion botones -----*/
.animacion-boton:hover, .animacion-boton:focus {
border-radius: 40px;
animation: shadow-pop-br 0.3s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}
@keyframes shadow-pop-br {
	0% {
		box-shadow: 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e;
		transform: translateX(0) translateY(0);
	}
	100% {
		box-shadow: 1px 1px #3e3e3e, 2px 2px #3e3e3e, 3px 3px #3e3e3e, 4px 4px #3e3e3e, 5px 5px #3e3e3e, 6px 6px #3e3e3e, 7px 7px #3e3e3e, 8px 8px #3e3e3e;
		transform: translateX(-8px) translateY(-8px);
	}
}
/*------------------STICKERS DE FONDO-----------------------*/
#stickers-fondo {
	display: flex;
	margin: 0px 0px 50px;
}
 #sticker-ferias {
	height: auto;
	position: absolute;
	z-index: -1;
}
.stickers {
	height: auto;
	position: absolute;
	z-index: -1;
}
#fondo-sticker1 {
	width: 50%;
	max-width: 142px;;
	left: -4px;
	top: 551px;
}
#sticker-linea-fucsia {
	width: 68%;
	max-width: 374px;
	bottom: 104px;
	right: 0;
}
#sticker-paleta {
	width: 10%;
	max-width: 225px;
	right: 82px;
	top: 1273px;
}
#sticker-rayo {
	width: 30%;
	max-width: 184px;
	right: 60px;
	top: 1844px;
}
#sticker-grabadoras {
	width: 20%;
	max-width: 391px;
	left: 0px;
	top: 1956px;
}
#sticker-corazon {
	width: 278px;
	left: 0px;
	top: 2466px;
}
#sticker-linea-amarilla {
	width: 384px;
	left: 0px;
	top: 2767px;
}
#sticker-grabadora2 {
	width: 313px;
	right: 38px;
	top: 3020px;
}


/*--------TERMINA LO GENERAL, EMPIEZA LOS HTMLS-----------*/


/*---------------HTML INDEX---------------*/
/*------header-index----*/
.header-index {
	gap: 31px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/*-----animacion del nav se mueve hacia abajo-------*/
.nav-animacion {
	animation: menu-movimiento  normal 3s ease-out both;
}
@-webkit-keyframes menu-movimiento {
	0% {
		top: -100%;
	}
	100% {
		top: 0%;
	}
}
/*----------fondo stickers index------*/
#linea-fucsia-index {
	width: 68%;
	max-width: 373px;
	bottom: 104px;
	right: 0;
}
#paleta-index {
	width: 10%;
	max-width: 225px;
	left: 361px;
	top: 580px;
}
/*----conectarse-----*/
#conectarse {
	padding: 9% 6% 4%;
	display: flex;
	justify-content: center;
}
.texto-index {
	width: 100%;
	max-width: 600px;
}
.h1-index {
	font-size: 2em;
}
.index-p {
	padding: 7% 8%;
	font-size: 1.3em;
}
.datos {
	padding: 12% 0% 0%;
	display: flex;
	flex-direction: column;
}
.datos-index {
	margin-bottom: 10px;
	font-size: 1.2em;
	font-weight: 700;
	text-align: center;
}
.caja-formulario-index {
	padding: 2% 4%;
	margin: 10px 0px;
	font-size: 1em;
	border: 1px solid black;
	border-radius: 20px;
}
/*--botones del index registrarse, ingresar, olvidaste contraseña--*/
.botones-index {
	margin: 10px;
	display: flex;
	gap: 60px;
}
.boton-formulario-index {
	margin: 10px 0px;
	padding: 2% 13%;
	font-size: 1.1em;
	color: white;
	font-weight: 700;
	border-radius: 30px;
	border: 1px solid black;
	cursor: pointer;
}
span a {
	color: black;
}
.boton-password {
	margin: 20px 0px;
	font-size: 1em;
	font-weight: 700;
	text-align: center;
	text-decoration: underline;
}

/*------------------------HTML REGISTRO--------------------------------*/
/*--------circulos de los pasos-------*/
.boton-fucsia {
	width: 20px;
	height: 20px;
	margin: 0px 10px;
	background: #FF20AC;
	border: 1px solid black;
	border-radius: 50%;
}
.boton-rosa {
	width: 20px;
	height: 20px;
	margin: 0px 10px;
	background: #F6C1DF;
	border: 1px solid black;
	border-radius: 50%;
}
/*-----------------MAIN-----------------*/
.main-registrar section {
	width: 100%;
	height: 483px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*-----Carrusel------*/
.carrusel-registro {
	max-width: 745px;
	height: 763px;
	overflow: hidden; /*esto es lo que hace que se pueda ver una card a la vez, lo oculta*/
	display: flex;
	position: absolute;
	top: 39px;/*para que no quede pegado al borde superior de la pantalla y tenga un espaciado*/
}
/*-----contenedor cards------*/
.contenedor-cuadrado {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.espacio {
	height: 142px;/*esto es para el espacio arriba de la card para que el elemento empiece donde empieza la página y no se mueva hacia abajo cuando vaya al siguiente card*/
}
/*-----cuadrado de las cards------*/
.cuadrado {
	width: 629px;
	height: 526px;
	padding: 30px 57px 62px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	border: 1px solid black;
	background-color: #92DDEA;
	border-radius: 31px;
	gap: 23px;
}
/*-----flechas de volver y siguiente para que queden alineadas------*/
.flechas {
	width: 89%;
	height: auto;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 6.5%;
	margin-left: 33px;
}
/*--para que este oculta la flecha de la primera card*/
.flecha-no {
	visibility: hidden;
}
/*-----texto------*/
.texto-registro {
	width: 100%;
	max-width: 627px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.main-registrar h1 {
	font-size: 1.6875em;
	text-align: center;
	padding: 0% 9%;
}
/*-----redes vincular primera card------*/
.redes-vincular {
	padding: 2% 10%;
	background-color: white;
	border: 1px solid black;
	border-radius: 20px;
}
.redes-vincular img {
	margin: 0px 10px;
}
/*-----------------*/

.main-registrar p {
	font-size: 1.5em;
	text-align: center;
	font-weight: 700;
}

.main-registrar .texto-bold{
	font-weight: bold;
}

/*-----form label------*/
.main-registrar label {
	font-size: 1.2em;
	font-weight: 700;
}

.main-registrar form{
	width: 90%;
	max-height: 314px;
	margin-left: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
}
/*-----Form input------*/
.main-registrar form input, .respuesta-categoria {
	width: 100%;
	height: 41px;
	padding-left: 30px;
	font-size: 1em;
	border-radius: 20px;
	font-weight: 700;
	border: 1px solid black;
	box-sizing: border-box;
}
/*-----Boton-siguiente------*/
.boton-siguiente {
	width: 50%;
	height: auto;
	padding: 10px 40px 8px;
	margin-top: 40px;
	color: white;
	font-size: 1.3em;
	font-weight: 700;
	border-radius: 40px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid black;
}

/*-----boton-ir-inicio------*/
.boton-ir-inicio {
	width: 50%;
	height: auto;
	margin: 0% 20%;
	padding: 9px 40px;
	font-size: 1.2em;
	color: white;
	font-weight: 700;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid black;
}
/*animacion de sticker completado registro el ultimo card*/
.img-completado {
	height: 371px;
	position: relative;
	left: 103px;
	background-image: url("img/registro/animacion-registro-a.svg");
	animation: registro-completo alternate 2s infinite ease-in-out;
	background-repeat: no-repeat;
}
@keyframes registro-completo {
	0%{
		background-image: url("img/registro/animacion-registro-a.svg");
	}
	50%{
		background-image: url( "img/registro/animacion-registro-b.svg");
	}
	100%{
		background-image: url("img/registro/animacion-registro-a.svg");
	}
}
/*--------------------HTML HOME--------------*/
/*-------------circulos secciones home------------*/
/*esto es para que al apretar en cada círculo no salte de sección de repente sino que fluya*/

html {
	scroll-behavior: smooth;
	transition-duration: 3s;
}
.circulos {
	display: flex;
	flex-direction: column;
	position: fixed;
	right: 30px;
	top: 50%;
}
.circulos li {
	padding: 2px;
	display: flex;
	justify-content: center;
}
.circulos a {
	width: 21px;
	height: 21px;
	border-radius: 100%;
	background-color: white; 
	border: 1px solid black
}
.circulos a:hover {
	background-color: #92DDEA
}
.circulos a:active, .circulos a:focus {
	background-color: #2CA6BC;
}
/*-----SECCION BIENVENIDX-----*/
#bienvenida {
	padding: 14% 7% 14% 1%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: flex-end
}
.bienvenidx, .h1-index {
	padding: 2% 6%;
	font-weight: 800;
	color: white;
	border:1px solid black;
	border-radius: 20px;
	text-align: center;
}
.bienvenidx {
	font-size: 3.75em;
}
.texto-principal {
	max-width: 652px;
}
.texto-principal p, .index-p {
	margin-top: 10px;
	font-weight: 700;
	box-sizing: border-box;
	border: 1px solid black;
	border-radius: 32px;
}
.texto-principal p {
	padding: 25px 57px 31px 64px;
	font-size: 1.875em;
}
.texto-mobile {
	display: none;
}
.logo-bienvenida {
	display: flex;
	align-items: center;
	position: relative;
	left: 35px;
	z-index: 10;
}
/*-----animacion  bienvenidx html index y home-----*/
.logo-bienvenida {
	width: 50%;
	height: 321px;
	background-image: url("img/home/isologo-animacion-a.svg");
	background-size: 100%;
	animation: iso-bienvenidx alternate 2s infinite ease-in-out;
	background-repeat: no-repeat;
}
@keyframes iso-bienvenidx {
	0%{
		background-image: url("img/home/isologo-animacion-a.svg");
	}
	50%{
		background-image: url("img/home/isologo-animacion-b.svg");
	}
	100%{
		background-image: url("img/home/isologo-animacion-a.svg");
	}
 }
/*-----SECCION OBJETIVOS-----*/
h2 {
	font-weight: 700;
	font-size: 2.5em ;
	color: white;
	background-color:#ff20ac;
	border:1px solid black;
	border-radius: 20px;
	text-align: center;
	box-sizing: border-box;
}
.h1-objetivo {
	padding: 3% 6%;
}
#objetivos {
	padding: 12% 8% 14%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.img-harta {
	width: 100%;
	max-width: 1138px;
	height: auto;
}
.box-objetivos {
	position: relative;
	right: 100px;
	z-index: 20;
}
.ul-objetivos{
	padding: 50px 20px 40px;
	margin-top: 10px;
	font-size: 1.5em;
	border: 1px solid black;
	border-radius: 15px;
	box-sizing: border-box;
}
.objetivos-items{
	display:flex;
	gap: 10px;
	align-items: center;
}
.objetivos-p {
	padding-bottom: 1%;
}

.objetivos-agenda {
	padding: 1% 0% 0%;
}
/*-----SECCION CONTENIDO-----*/
/*--------------contenido grid--------------*/
.contenido-grid {
	max-width: 902px;
	margin: 0px auto;
	padding: 9% 10% 14%;
	display: grid;
	/*NOTA: el css original era: grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); pero al hacerlo asi sale un error en dw, solo deja con px*/
	grid-template-columns:repeat(auto-fit, minmax(229px, 1px));
	grid-gap: 60px;
	row-gap: 100px;
	grid-auto-flow: dense;
	justify-content: center;
	justify-items: center;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	margin-block-end: 2em;
	margin-block-start: 1em;
	margin-inline-end: 0px;
	padding-inline-start: 40px;
	padding-inline-end: 40px;
}
/*---------------------*/
#contenido{
	padding: 5%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.titulo-contenido {
	width: 400px;
	padding: 1% 77px;;
	display:flex;
}
#contenido li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 13px;
}
#contenido h3{
	width: 232px;
	height: 40px;
	font-weight: 700;
	font-size: 1.875em;
	color: white;
	background-color:#ff20ac;
	border:1px solid black;
	box-sizing:border-box;
	border-radius: 20px;
	text-align: center;
}
.p-contenidos{
	width: 232px;
	height: 115px;
	padding: 15px;
	font-size: 1.25em;
	font-weight: 400;
	color: black;
	background-color: white;
	border:1px solid black;
	border-radius: 20px;
	text-align: center;
	box-sizing: border-box;
}
/*-------SECCION DISFRUTA---------*/
#disfruta{
	padding: 10% 10% 5%;
	box-sizing: border-box;
}
#disfruta article {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
#disfruta h4 {
	font-weight: 800;
	font-size: 3.75em;
	font-style: normal;
	text-align: center;
	color: #FF20AC;
}
/*-------animacion de los stickers disfruta--------*/
.imagen-disfruta {
	width: 42%;
	height: 532px;
	background-image: url("img/home/cierre-animacion-a.svg");
	background-size: 100%;
	animation: cierre-animacion-home alternate 2s infinite ease-in-out;
	background-repeat: no-repeat;
}
@keyframes cierre-animacion-home{
	0%{
		background-image: url("img/home/cierre-animacion-a.svg");
	}
	50%{
		background-image: url("img/home/cierre-animacion-b.svg");
	}
	100%{
		background-image: url("img/home/cierre-animacion-a.svg");
	}
}
/*--------------------------------FERIAS-FERIAR.HTML----------------------------------------*/
#sticker-ferias {
	width: 30%;
	max-width: 184px;
	bottom: -482px;
	right: 0;
}
.ferias{
	padding: 5%;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
}
.ferias h1{
	height: 87px;
	padding: 1% 4%;
	font-weight: 700;
	font-size: 2.5em;
	color: white;
	border: 1px solid black;
	border-radius: 20px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
/*-------ferias carrusel--------*/
.lista-ferias {
	margin: 2% 0%;
	
	display: grid;
	grid-template-rows: 390px;
	grid-template-columns: 360px 360px 360px 360px 360px 360px 360px;
	grid-column-gap: 20px;
	grid-auto-flow: column;
	
	justify-content: space-between;
	justify-items: center;
	align-content: center;
	align-items: center;
	
	width: 100%;
	max-width: 1920px;
	height: 600px;
	scroll-snap-type: x mandatory;
	overflow-x: scroll;
	overflow-y: hidden;	
}
.ferias-graficas {
	width: 75%;
	padding: 0px 20px 0px 10px;
	object-fit: cover;
	scroll-snap-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.ferias-nombre {
	width: 70%;
	height: 38px;
	margin: 40px 20px 0px 20px;
	font-weight: 700;
	font-size: 1.5625em;
	color: black;
	text-align: center;
}
/*---------animacion ferias rotacion--------*/
.logo-fg:hover, .logo-fg:focus, .logo-fg:active {
	animation: ferias-rotacion normal 0.8s 1 ease-in-out both;
}
@keyframes ferias-rotacion {
	0% {
		transform: rotateY(0);
	}
	100% {
		transform: rotateY(360deg);
	}
}
/*--------------------------------FERIA-GRAFICA.HTML----------------------------------------*/
#main-feria-grafica {
	padding-top: 4%;
	display:flex;
}
/*-------seccion como llegar------*/
#seccion-como-llegar {
	padding: 3%;
	display: flex;
	flex-direction: column;
}
.feria-juntas {
	padding: 1% 4% 10px;
	gap: 80px;
	display: flex;
	align-items: center;
}
.feria-juntas h1 {
	font-weight: 700;
	font-Size: 2.5em;
	color: #0E6372;
}
.como-llegar {
	gap: 100px;
	display: flex;
	justify-content: center;
}
.como-llegar h2 {
	font-size: 1.85em;
}
.div-informacion-llegar {
	width: 40%;
}
.ul-informacion {
	margin: 10px 0px 15px;
	padding: 2% 3% 2% 2%;
	border-radius: 30px;
	border: 1px solid black;
}
.informacion-juntas {
	margin-bottom: 15px;
	gap: 20px;
	display: flex;
	align-items: center;
}
.informacion-juntas p {
	width: 100%;
	padding: 2%;
	font-weight: 700;
	font-size: 1em;
	background-color: #F6C1DF;
	border-radius: 40px;
	box-sizing: border-box;
	text-align: center;
}
/*---botones de redes, favoritos y stand*/
.botones-juntas {
	padding-top: 2%;
	gap: 20px;
	display: flex;
}

.boton-stand {
	width: 310px;
	padding: 15px 10px;
	font-weight: 700;
	font-size: 1em;
	text-align: center;
	color: white;
	border-radius: 40px;
	border: 1px solid black;
	cursor:pointer;
}

/*------animacion boton favorito----------*/
.boton-favoritos {
	animation: heartbeat 1.5s ease-in-out infinite both;
}
@keyframes heartbeat {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	10% {
		-webkit-transform: scale(0.91);
		transform: scale(0.91);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	17% {
		-webkit-transform: scale(0.98);
		transform: scale(0.98);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	33% {
		-webkit-transform: scale(0.87);
		transform: scale(0.87);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	45% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}

/*------------mapa-----------*/
.mapa iframe {
	margin-top: 10px;
	border:1px solid black;
	border-radius: 30px;
}

/*------------seccion cards------------*/
#seccion-cards {
	padding: 5% 8% 12%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.card-a h3, .card-b h3, .galeria-titulo {
	font-weight: 700;
	font-size: 1.875em;
	color: white;
	border: 1px solid black;
	border-radius: 20px 20px 0px 0px;
	box-sizing: border-box;
}
.card-a h3, .card-b h3 {
	padding: 3% 6%;
	text-align: center;
}
.card-a p, .card-b p {
	padding: 60px 86px;
	font-size: 1.5em;
}
.card-a p, .card-b p, .fondo-galeria { 
	border: 0.5px solid black;
	border-radius: 0px 0px 20px 20px;
	box-sizing: border-box;
}
.card-b {
	position: relative;
	right: 55px;
	top: 237px;
	z-index: 20;
	margin-bottom: 13%;
}
/*--------------seccion galeria--------------*/

/*---------fondo galeria--------*/
#seccion-galeria {
	width: 60%;
	padding: 7% 20%;
	display: flex;
	flex-direction: column;
}
.galeria-titulo {
	padding: 2% 7%;
}
.fondo-galeria {
	padding: 0% 4% 6%;
}
/*  -------galeria carrusel Juntas----------*/
.galeria-carrusel {
	display: grid;
	grid-template-columns: 400px 400px 400px 400px 400px 400px 400px 400px;
	grid-column-gap: 20px;
	grid-auto-flow: column;
	align-items: center;
	width: 100%;
	height: 429px;
	scroll-snap-type: x mandatory;
	overflow-x: scroll;
	overflow-y: hidden;
}

.carrusel-juntas {
	margin: 0 auto;
}
/*-----------------HTML CURSOS-------------------*/
/*-----animacion de los stickers-----*/
.stickers-cursos {
	width: 550px;
	height: 564px;

	background-image: url("img/cursos/stickers-cursos-a.svg");
	background-size: 100%;
	animation: stickers-animacion alternate 2s infinite ease-in-out;
	background-repeat: no-repeat;
}
@keyframes stickers-animacion{
	0%{
		background-image: url("img/cursos/stickers-cursos-a.svg");
	}
	50%{
		background-image: url("img/cursos/stickers-cursos-b.svg");
	}
	100%{
		background-image: url("img/cursos/stickers-cursos-b.svg");
	}
}
/*----------------*/
.main-cursos {
	padding: 10% 5% 4%;
}
.seccion-contruccion {
	display: flex;
	align-items: center;
	justify-content: center;
}
.curso-texto {
	display: flex;
	position: relative;
	right: 70px;
	top: 66px;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 20;
}
.cursos-h1 {
	width: 100%;
	padding: 3% 0%;
	font-size: 3em;
	font-weight: 800;
	color: white;
	border-radius: 20px;
	text-align: center;
	border: 1px solid black;
}
.texto-lo-sentimos {
	padding: 8% 12%;
	margin-top: 10px;
	font-size: 1.6em;
	border-radius: 20px;
	border: 1px solid black;
	font-weight: 700;
	text-align: center;
}

/*-----------------HTML AGENDA-------------------*/
.main-agenda {
	padding: 12% 7% 6%;
	display: flex;
	justify-content: center;

}
.agenda-texto {
	width: 65%;
	padding: 0% 17%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.agenda-texto h1 {
	width: 87%;
	padding: 2% 6%;
	font-weight: 700;
	color: white;
	border: 1px solid black;
	border-radius: 13px;
	text-align: center;
	font-size: 1.7em;
}
.agenda-texto p {
	width: 96%;
	height: 51px;
	margin: 12px 0px 20px;
	padding: 3% 2% 1%;
	font-size: 1.3em;
	font-weight: 700;
	border: 1px solid black;
	border-radius: 16px;
	text-align: center;
}
/*-- agenda-----*/
.agenda-feriar {
	border: solid 1px black;
	border-radius: 8px;
}
/*-----------------HTML PERFIL-------------------*/
/*--------fondo main------*/
.body-perfil {
	background-image: url("img/perfil/fondo-perfil-body.svg");
	background-size: 1920px;
}
.main-perfil {
	padding: 12% 6% 8%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 37px;
}
/*-----fondo del perfil------*/
.contenedor-perfil {
	position: absolute;
	z-index: -1;
}
.contenedor_avatar {
	width: 380px;
	font-size: 1.25em;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
/*----imagen perfil-----*/
#foto-avatar {
	margin: 25px 8px 5px 27px;
}
/*---nombre-----*/
#nombre-perfil {
	color: black;
	font-size: 1.56em;
	font-weight: 700;
	background: none;
	border: none;
}
/*----localidad-------*/
.localidad {
	display: flex;
	justify-content: center;
	font-size: 1em;
	font-weight: 400;
	gap: 14px;
}
/*----categorias de perfil-----*/
.categorias {
	width: 205px;
	padding: 4%;
	font-size: 1.25em;
	font-weight: 700;
	text-align: center;
	background-color: #FFE927;
	border: 1px solid black;
	border-radius: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}
/*---boton editar perfil----*/
#editar-perfil {
	padding: 2% 3%;
	display: flex;
	font-size: 1em;
	font-weight: 700;
	color: white;
	border: 1px solid black;
	border-radius: 30px;
	justify-content: center;
	align-items: center;
}
/*-----redes sociales----*/
.p-redes {
	font-size: 1.1em;
	font-weight: 700;
}
.redes-sociales img {
	margin: 0px 10px;
}

/*-----seccion trabajos------*/
.seccion-trabajos {
	width: 58%;
	height: 372px;
	padding: 1% 3% 0% 0%;
	display: flex;
	flex-direction: column;
}
.mis-trabajos-perfil {
	display: flex;
	padding: 2% 7%;
	border-radius: 20px 20px 0px 0px;
	border: 1px solid black;
	justify-content: space-between;
	align-items: center;
}
.h4-trabajos {
	font-weight: 800;
	font-size: 1.6em;
	color: white;
}
.boton-trabajos {
	padding: 1% 3%;
	background-color: #92DDEA;
	border: 1px solid black;
	border-radius: 20px;
	font-size: 1em;
	color: #0E6372;
	font-weight: 800;
}
.fondo-trabajos {
	padding: 0% 4% 5%;
	background-color: white;
	border: 1px solid black;
	border-radius: 0px 0px 20px 20px;
	box-sizing: border-box;
}
/*------carrusel trabajos-----*/
.trabajos-carrusel {
	display: flex;
}
/*--grid mis trabajos*/
.trabajos-carrusel {
	width: 100%;
	height: 313px;
	display: grid;
	grid-template-columns: 300px 300px 300px 300px 300px 300px;
	grid-column-gap: 12px;
	grid-auto-flow: column;
	align-items: center;
	scroll-snap-type: x mandatory;
	overflow-x: scroll;
	overflow-y: hidden;
}
.div-carrusel-trabajos {
	margin: 0 auto;
}
@media (max-width: 600px) {
/*-----MENU HAMBURGUESA Mobile--------*/
	header {
		height: 80px;
		padding: 15px 2%;
	}
	.menu {
		gap: 15px;
	}
	.nav {
		justify-content: space-between;
		display: flex;
		align-items: center;
	}
	/*-----iso mobile y menu--------*/
	.logo {
		padding-bottom: 2%;
	}
	.logo:hover {
	animation: logo-movimiento normal 10s 1s 1 ease;
	}
	.iso-mobile, .checkbtn, .menu-mobile {
		display: block;
	}
	.logo-desktop {
		display: none;
	}
	#check:checked ~ ul {
		left: 0;
	}
	.botones-menu{
		position: fixed;
		left: -100%;
		text-align: center;
		transition: all .5s;
		top: 80px;
		gap: 0px;
		display: flex;
		flex-direction: column;
	}
	.botones-menu a {
		border-radius: 0px;
		margin: 0px;
		padding: 4% 0% 4% 14%;
		justify-content: flex-start;
		width: 300px;
		box-sizing: content-box;
	}
	.botones-menu li {
		font-size: 1em;
	}
	.botones-menu a:hover {
		background-color: #FF20AC;
		color: white;
		fon-size: 1.2em;
	}
	.botones-menu li:hover, .botones-menu li:focus {
		border-radius: 0px;
		animation: none;
	}
	.botones-menu li:hover {
		font-size: 1.3em;
	}
	
	/*-----------buscador-----------*/
	.buscador {
		padding-bottom: 1%;
	}
	.form-search input[type=text]:focus {
		max-width: 230px;
		width: 100%;
	}
	/*--------nav perfil----------*/
	.nav-mi-perfil {
		width: 10%;
		padding-bottom: 2%;
		margin-left: 4px;
		flex: none;
	}
	.flecha-contenedor {
		display: none;
	}
	/*--------FOOTER MOBILE-------------*/
	.footer-flex {
		padding: 14px 0px 10px;
		line-height: 15px;
		font-size: 0.8125em;
		flex-direction: column;
		justify-content: center
	}
	#posicion-texto-footer {
		padding: 0% 0% 2%
	}
	#posicion-redes-footer {
		padding: 0px;
	}
	
	/*----MAIN STICKERS DE FONDO----*/
	#sticker-corazon, #sticker-linea-amarilla, #sticker-grabadoras, #sticker-grabadora2, #sticker-paleta, #sticker-rayo, #paleta-index {
		display: none;
	}
	/*--------------------HTML INDEX-------------*/
	/*---stickers fondo------*/
	#linea-fucia-index {
		width: 50%;
		bottom: 266px;
	}
	
	/*---------index--------*/
	.main-index {
		padding: 20% 0% 6%;
	}
	.index-p {
		text-align: center;
	}
	.botones-index {
		width: 100%;
		gap: 10px;
		display: flex;
		align-items: center;
		justify-content: space-around;
	}
	.boton-formulario-index {
		padding: 2% 6%;
	 }
	/*--------------------HTML HOME-----------------------------*/
	/*----sticker fondo----*/
	#sticker-linea-fucsia {
		top: 800px;
	}
	/*circulos de las secciones*/
	.circulos {
		display: none;
	}
	/*-----SECCION BIENVENIDX-----*/
	.logo-bienvenida, .texto-desktop {
		display: none;
	}
	.texto-mobile {
		display: block;
	}
	#bienvenida {
		padding: 28% 6% 14%;
	}
	.bienvenidx {
		font-size: 2.5em;
	}
	.texto-principal p {
		padding: 23px 45px;
		border-radius: 20px;
		text-align: center;
	}
	/*---SECCION OBJETIVOS-----*/
	#objetivos {
		display: none;
	}
	
	/*-------SECCION CONTENIDO------*/
	/*-------contenido grid-----*/
	.contenido-grid {
		max-width: 600px;
	}
	.contenido-grid {
		margin: 0 auto;
		padding: 0%;
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(220px, 1px));
		grid-gap: 20px;
		grid-auto-flow: dense;
		justify-content: center;
	}
	/*------------------------------------*/
	#contenido {
		gap: 30px;
	}
	.titulo-contenido {
		width: 300px;
		padding: 5px 54px;
		font-size: 2em;
	}
	#contenido h3{
		width: 197px;
		height: 41px;
	}
	.p-contenidos {
		width: 93%;
		padding: 16px 9px 9px;
		border-radius: 15px;
	}
	/*----SECCION DISFRUTA------*/
	#disfruta h4 {
		font-size: 3em;
	}
	.imagen-disfruta {
		width: 75%;
		height: 268px;
	}
	/*--------------------HTML FERIAS-FERIAR-----------------------------*/
	#main-ferias {
		padding: 10% 0% 10%;
	}
	.ferias {
		padding: 5% 1%;
	}
	.ferias h1 {
		padding: 4%;
	}
	/*--------grid----------*/
	.lista-ferias {
		grid-template-columns: 311px 311px 311px 311px 311px 311px 311px;
		grid-column-gap: 2px;
	}
	/*-----HTML PERFIL---------*/
	.body-perfil {
		background-image: url("img/perfil/mobile-perfil.svg");
		background-size: 600px;
	}
	.main-perfil {
		padding: 22% 6% 8%;
		flex-direction: column;
		align-items: center;
	}
	.seccion-trabajos {
		width: 100%;
		padding: 3% 3% 8% 2%;
		margin-top: 50px;
	}
	.h4-trabajos {
		font-size: 1.2em;
	}
	.boton-trabajos {
		text-align: center;
	}
	/*-----------------HTML CURSOS-------------------*/
	
	#main-cursos{
		padding-top:20%;
	}
	.cursos-section{
		flex-direction: column;
	}
	.sticker-cursos {
		width: 80%;
		height: 320px;
		padding-bottom: 10%;
		display: flex;
		align-content: center;
	}
	.curso-texto{
		width: 80%;
	}
}
@media (max-width: 450px) {
	/*-------SECCION CONTENIDO------*/
	.contenido-grid {
		max-width: 250px;
	}
}