@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;700;800&family=Roboto:ital,wght@0,400;0,700;1,400&display=swap');

*{
	margin: 0px;
	padding: 0px;
	text-decoration: none;
	list-style: none;
	scroll-behavior: smooth;
}

body {
	display: flex;
	flex-direction: column;
}

/* NAV */

.cabecera {
	width: 100%;
	height: auto;
	padding: 0% 5%;
	box-sizing: border-box;
	background-color: #FDF6EC;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	margin-right: 20%;
}

.nav {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-secciones {
	width: 60%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-secciones li {
	padding: 20px;
	box-sizing: border-box;	
}

.nav-secciones a:hover {
	color: #89CCCC;
	transition: all .3s;
}

.boton-menu {
	position: relative;
}

.menu {
	position: absolute;
	z-index: 10;
	left: -2%;
	background-color: #FDF6EC;
	visibility: hidden;
	opacity: 0;
	transition: opacity 1.5s;
}

.menu li {
	border: 3px solid #89CCCC;
	border-top: 0px;
}

.boton-menu:hover .menu {
	visibility: visible;
	opacity: 1;
}

.nav-botones {
	width: 25%;
	display: flex;
	justify-content:space-evenly;
	align-items: center;
	text-align: center;
}

nav a, .perfil p {
	color: #353F3C;
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
}

.perfil {
	width: 50%;
	display: flex;
	align-items: center;

}

.perfil p {
	padding-left: 10px;
}

.icon-menu {
	color: #353F3C;
	background: none;
	border: none;
	font-size: 30px;
	display: none;
}

#check {
	display: none;
}

/* BOTONES */

.boton {
	width: auto;
	height: 34px;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 13px;
	color: #FDF6EC;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1.25px;
}

input[type="submit"] {
	width: 130px;
	margin: 20px 0px 10px 0px;
	border: none;
	text-align: center;
}

.boton-celeste {
	background-color: #89CCCC;
}

.boton-celeste:hover {
	box-shadow: 2px 4px 5px 1px rgba(137,204,204,0.5);
}

.boton-naranja {
	background-color: #FF9F00;
	
}

.boton-rosa {
	width:auto;
	background-color: #F6798D;
}

.boton-outline {
	border: 2px solid #FDF6EC;
	
}

.ver-mas {
	margin-bottom: 10px;
	text-align: center;
	position: absolute;
	bottom: 0%;
	left: 47%;
}

/* TIPOGRAFIA */

h2 {
	font-family: 'Nunito', sans-serif;
	font-size: 48px;
	font-weight: 700;
	font-style: normal;
}

h3 {
	font-family: 'Nunito', sans-serif;
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
}

p {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 22pt;
	font-weight: 400;
	font-style: normal;
}

.gris {
	color: #353F3C;
}

.blanco {
	color: #FDF6EC;
}

.bold {
	font-weight: 700;
}

.celeste {
	color: #89CCCC;
}

/* GALERÍA */

#productos, #pantalones, #remera, #buzo, #vestido {
	width: 100%;
	height: auto;
	background-color: #FDF6EC;
	padding: 50px 155px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	position: relative;
}

.galeria {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.galeria-home, .card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.galeria-home p {
	position: absolute;
	bottom: 6%;
}

.galeria img{
	margin: 20px 0px;
	border-radius: 13px;
}

.galeria img:hover {
	box-shadow: 2px 4px 10px 1px rgba(137,204,204,0.5);
}

.info-productos {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	bottom: 8%;
}

.info-productos li {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 22pt;
	font-weight: 400;
	font-style: normal;
}

/* CONTACTO */

#contacto {
	width: 100%;
	height: auto;
	background-color: #F6798D;
	padding: 50px 155px 0px 155px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}

.contacto-info {
	width: 60%;
	display: flex;
	flex-direction: column;
}

.contacto-info p {
	width: 60%;
	padding: 20px 0px;
}

.contacto-icon {
	display: flex;
	align-items: center;
}

.contacto-icon img {
	margin-right: 10px;
}

.contacto-icon a {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	color: #FDF6EC;
}

/* FORMULARIO */

form {
	width: 40%;
	padding-bottom: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	position: relative;
}

label {
	font-family: 'Nunito', sans-serif;
	color: #FDF6EC;
	font-size: 18px;
	padding: 20px 0px 0px 10px;
}

.recordarme {
	display: flex;
	align-items: center;
}

input, textarea {
	border: none;
	border-radius: 10px;
	width: 350px;
	padding: 0px 10px;
	box-sizing: border-box;
	background-color: #FDF6EC;
}

input {
	height: 30px;
}

textarea {
	height: 300px;
}

#recordarme {
	margin-left: 10px;
	width: 15px;
	height: 15px;
}

.olvidaste {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	color: #FDF6EC;
	position: absolute;
	bottom: 10%;
	right: 0%;
}

/* FOOTER */

footer {
	width: 100%;
	height: auto;
	padding: 0px 155px;
	box-sizing: border-box;
	background-color: #FDF6EC;
	display: flex;
	justify-content: space-between;
}

footer div {
	width: 30%;
	display: flex;
	justify-content: flex-end;
}

footer div a {
	margin: 0px 10px;
}



/* INDEX */

#home {
	width: 100%;
	height: auto;
	background-color: #FDF6EC;
	padding: 20px 155px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

#home div {
	width: 40%;
}

h1 {
	padding-bottom: 40px;
	font-family: 'Nunito', sans-serif;
	font-size: 80px;
	line-height: 60pt;
	font-weight: 800;
	font-style: normal;
	color: #353F3C;
}

#home p {
	width: 70%;
	padding: 40px 0px;
}

.scroll {
	position: absolute;
	left: 50%;
	bottom: 10%;
}

#tipo-de-cuerpos {
	width: 100%;
	height: auto;
	background-color: #FDF6EC;
	padding: 20px 155px 20px 0px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#tipo-de-cuerpos div {
	width: 100%;
}

#tipo-de-cuerpos p {
	width: 90%;
	padding: 40px 0px;
}

#informacion-talles {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
}

#informacion-talles article {
	width: 50%;
	padding: 100px 0px 100px 155px;
	box-sizing: border-box;
}

.ley-talles {
	background-color: #F6798D;
}

.info-medidas {
	background-color: #FF9F00;
}

#informacion-talles p {
	width: 70%;
	padding: 40px 0px;
}


/* INICIO DE SESIÓN y REGISTRO */

.logueo {
	width: 100%;
	height: 840px;
	padding-right: 155px;
	background-image: url("img/background.png");
	background-color: #F6798D;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.logueo-form {
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
}

/* ANIMACIÓN */

.imagen {
	height: inherit;
	position: relative;
 }

.imagen img {
	position: absolute;
	animation-name: multiple-image;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.imagen img:nth-of-type(1) {
	animation-delay: 6s;
}

.imagen img:nth-of-type(2) {
	animation-delay: 4s;
}
.imagen img:nth-of-type(3) {
	animation-delay: 2s;
}

.imagen img:nth-of-type(4) {
	animation-delay: 0s;
}

@keyframes multiple-image {
	0% {
		opacity:1;
	}
	17% {
		opacity:1;
	}
	25% {
		opacity:0;
	}
	92% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}

/* REGISTRO: Pantalla de bienvenida */

.bienvenido {
	width: 100%;
	height: auto;
	background-color: #FDF6EC;
	padding: 20px 155px 0px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.info-bienvenido {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 40px;
}

.info-bienvenido h2 {
	margin: 40px 0px;
}

.info-bienvenido a {
	margin: 20px 0px;
}

/* REGISTRO: Tipos de cuerpos */

.cuerpo {
	width: 100%;
	height: auto;
	background-color: #F6798D;
	padding: 40px 155px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.info-cuerpos {
	width: 100%;
	margin: 40px 0px;
	display: flex;
	justify-content: space-evenly;
}

.info-cuerpos a {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.info-cuerpos img {
	transition: all 300ms;
	position: relative;
}

.info-cuerpos img:hover {
	transform: scale(1.15);
}

.tooltip {
	width: 160px;
	height: auto;
	padding: 20px;
	margin: 40px 0px;
	background-color: #FDF6EC;
	border: 2px solid #89CCCC;
	border-radius: 13px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 1.5s;
}

.tooltip li {
	margin-bottom: 10px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	color: #353F3C;
	text-align: center;
}

.info-cuerpos a:hover .tooltip {
	visibility: visible;
	opacity: 1;
}

/* REGISTRO: Medidas */

.medidas {
	width: 100%;
	height: auto;
	background-color: #F6798D;
	padding: 20px 155px 0px;
	box-sizing: border-box;
	display: flex;
}

.medidas div {
	margin-top: 100px;
}

/* REGISTRO: Datos personales */

.datos {
	width: 100%;
	height: 1080px;
	background-color: #F6798D;
	padding: 40px 155px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.info-datos {
	width: 25%;
}

select {
	border: none;
	border-radius: 10px;
	width: 350px;
	height: 30px;
	padding: 0px 10px;
	box-sizing: border-box;
	background-color: #FDF6EC;
}

option {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 22pt;
	font-weight: 400;
	font-style: normal;
}

.modal {
	width: 30%;
	height: 60%;
	background-color: #FF9F00;
	border-radius: 13px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	position: fixed;
	left: 35%;
	opacity:0;
	pointer-events:none;
  	transition: all 1s;
}

#modal-box:target {
  opacity: 1;
  pointer-events: auto;
}


/* TIENDA */

#preguntasfrecuentes {
	width: 100%;
	height: auto;
	background-color: #89CCCC;
	padding: 50px 155px;
	box-sizing: border-box;
}

summary {
	padding-top: 20px;
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: 400;
	font-style: normal;
	color: #353F3C;
}

summary:hover {
	color: #FDF6EC;
}

summary:after {
	content: "▾"
}

/* RESPONSIVE: Index */

@media screen and (max-width: 1770px) {
	
	.logo {
		margin-right: 10%;
	}
	
	.nav-secciones li {
		padding: 10px;
		box-sizing: border-box;	
	}
	
	#home, #productos {
		padding: 4% 5%;
		box-sizing: border-box;
	}
	
	.mujeres, #tipo-de-cuerpos img {
		width: 50%;
		height: auto;
	}
	
	.scroll {
		bottom: 20%;
	}
	
	#informacion-talles {
		background-color: #F6798D;
	}
	
	#informacion-talles article {
		padding-left: 5%;
		box-sizing: border-box;
	}
	
	#informacion-talles p {
		width: 95%;
		padding: 40px 0px;
	}
	
	#contacto, footer {
		padding-left: 5%;
		padding-right: 5%;
	}
	
	footer div {
		width: 10%;
	}
}


@media screen and (max-width: 1024px) {
	
	.cabecera {
		width: 100%;
		padding: 0% 10%;
		box-sizing: border-box;
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 5;
		
	}
	
	.cabecera img {
		margin-right: 0%;
	}

	header .nav {
		width: 100%;
		height: calc(100% - 100px);
		padding: 20px 0px;
		background-color: #89CCCC;
		flex-direction: column;
		justify-content: flex-start;
		position: fixed;
		top: 100px;
		left: 100%;
		transition: all 0.5s; 
	}

	.nav-secciones {
		width: 100%;
		flex-direction: column;
	}
	
	header .nav-secciones a:hover {
		color: #353F3C;
		transition: all 0s;
	}

	.boton-menu:hover .menu {
		visibility: hidden;
		opacity: 0;
	}

	.nav-botones {
		width: 100%;
		flex-direction: column;
		justify-content: space-between;
	}
	
	.nav-botones li {
		margin: 25px 0px;
	}
	
	.nav-botones a:hover {
		color: #353F3C;
		transition: all 0s;
	}

	nav a {
		color: #FDF6EC;
		font-size: 18px;
	}

	.icon-menu {
		display: block;
		padding: 0;
	}
	
	#check:checked ~ .nav{
        left:0;
    }
	
	#home {
		padding: 20px 50px;
		box-sizing: border-box;
		flex-direction: column;
		justify-content: space-evenly;
	}
	
	#home div {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	h1 {
		margin-top: 100px;
		padding-bottom: 10px;
		font-size: 50px;
		line-height: 54px;
		text-align: center;
	}
	
	#home p {
		width: 80%;
	}
	
	#home img {
		width: 100%;
		height: auto;
		margin-top: 20px;
	}
	
	.scroll {
		display: none;
	}
	
	#tipo-de-cuerpos {
		padding: 20px 0px;
		box-sizing: border-box;
		flex-direction: column-reverse;
	}

	#tipo-de-cuerpos div {
		width: 100%;
		padding: 0px 50px;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	#tipo-de-cuerpos img {
		width: 100%;
		height: auto;
		margin-top: 20px;
	}
	
	#tipo-de-cuerpos p {
		width: 80%;
	}
	
	#informacion-talles {
		flex-direction: column;
	}

	#informacion-talles article {
		width: 100%;
		padding: 100px 50px;
		box-sizing: border-box;
	}

	#informacion-talles p {
		width: 80%;
	}
	
	#productos {
		padding: 10%;
		box-sizing: border-box;
	}
	
	.galeria-home {
		width: 40%;
	}
	
	.galeria-home img{
		width: 100%;
	}
	
	#contacto {
		padding: 10%;
		box-sizing: border-box;
		flex-direction: column;
	}

	.contacto-info {
		width: 100%;
		margin-bottom: 50px;
		display: flex;
		flex-direction: column;
	}

	.contacto-info p {
		width: 100%;
		padding: 20px 0px;
	}
	
	.buzon {
		display: none;
	}

	.contacto-icon a {
		font-size: 16px;
	}
	
	form {
		width: 100%
	}
	
	input, textarea {
		width: 95%
	}
	
	footer {
		padding: 0% 10%;
	}
	
	footer .nav {
		display: none;
	}
	
	footer div {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	footer div a {
		padding: 0px 30px;
	}
}


@media screen and (max-width: 600px) {
	
	h2 {
		font-size: 36px;
	}

	p {
		font-size: 16px;
		line-height: 20pt;
	}

	h1 {
		font-size: 40px;
		line-height: 42px;
	}

	#home p {
		width: 95%;
	}
	
	#tipo-de-cuerpos p {
		width: 95%;
	}
	
	.galeria-home {
		width: 100%;
	}
	
	.galeria-home img{
		width: 95%;
	}

}