@import url('https://fonts.googleapis.com/css?family=Montserrat|Montserrat+Alternates|Poppins&display=swap');
	*{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Montserrat Alternates', sans-serif;
	}
	body{
		background: #e6a0f8;
		background-size: 100vw 100vh;
		background-repeat: no-repeat;
	}
	.capa{
		position: fixed;
		width: 100%;
		height: 150vh;
		background: #fff;
		z-index: -1;
		top: 0;left: 0;
	}
	/*Estilos para el encabezado*/
	.header{
		width: 100%;
		height: 120px;
		position: fixed;
		top: 0;left: 0;
		background: #e6a0f8;
	}


	.carrusel{
		height: 80vh;
		width: 100%;
		
	}

	

	.container{
		width: 90%;
		max-width: 1200px;
		margin: auto;
	}
	.container .btn-menu, .logo{
		float: left;
		line-height:100px;
	}
	.container .btn-menu label{
		color: #4c2389;
		font-size: 25px;
		cursor: pointer;
		font-weight: 500;
	}
	.logo h1{
		color: #fff;
		font-weight: 400;
		font-size: 22px;
		margin-left: 10px;
		font-weight: 700;
	}
	.logo {
		padding-left: 20px;
		padding-top: 5px;
		align-items: center;
		
	}


	.container .menu{
		float: right;
		line-height: 100px;
		
	}


	

	.container .menu a{
		display: inline-block;
		padding: 15px;
		line-height: normal;
		text-decoration: none;
		color: #4c2389;
		transition: all 0.3s ease;
		border-bottom: 2px solid transparent;
		font-size: 25px;
		margin-right: 5px;
		font-weight: 800;
	}
	.container .menu a:hover{
		border-bottom: 2px solid #4c2389;
		padding-bottom: 5px;
	}
	/*Fin de Estilos para el encabezado*/

	/*Menù lateral*/
	#btn-menu{
		display: none;
		
	}
	.container-menu{
		position: absolute;
		background: rgba(252, 252, 252, 0.5);
		width: 100%;
		height: 100vh;
		top: 0;left: 0;
		transition: all 500ms ease;
		opacity: 0;
		visibility: hidden;
	}
	#btn-menu:checked ~ .container-menu{
		opacity: 1;
		visibility: visible;
	}
	.cont-menu{
		width: 100%;
		max-width: 250px;
		background: #e690f8;
		height: 100vh;
		position: relative;
		transition: all 500ms ease;
		transform: translateX(-100%);
	}
	#btn-menu:checked ~ .container-menu .cont-menu{
		transform: translateX(0%);
	}
	.cont-menu nav{
		transform: translateY(15%);
	}
	.cont-menu nav a{
		display: block;
		text-decoration: none;
		padding: 20px;
		color: #fff;
		border-left: 5px solid transparent;
		transition: all 400ms ease;
		font-weight: 500;
	}
	.cont-menu nav a:hover{
		border-left: 5px solid #fff;
		background: #4c2389;
	}
	.cont-menu label{
		position: absolute;
		right: 5px;
		top: 10px;
		color: #4c2389;
		cursor: pointer;
		font-size: 18px;
	}
	/*Fin de Menù lateral*/


	.contenedor{
        padding: 0%;
		width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    .contenedor figure{
       padding: 0%;
		position:relative;
        height: 350px;
        cursor: pointer;
        width: 100%;
        overflow: hidden;
        border-radius: 6px;
       
    }
    .contenedor figure img{
        width: 100%;
        height: 100%;
        transition: all 400ms ease-out;
        will-change: transform;
    }
    .contenedor figure .capa{
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(222, 129, 241, 0.7);
        transition: all 400ms ease-out;
        opacity: 0;
        visibility: hidden;
       text-align: center;
    }
    .contenedor figure:hover > .capa {
        opacity: 1;
        visibility: visible;
    }
    .contenedor figure:hover > .capa h3{
        margin-top: 70px;
        margin-bottom: 15px;
    }
    .contenedor figure:hover > img{
        transform: scale(1.3);
    }
    .contenedor figure .capa h3{
        color: #fff;
        font-weight: 400;
        margin-bottom: 120px;
        transition: all 400ms ease-out;
         margin-top: 30px;
    }
    .contenedor figure .capa p{
        color: #fff;
        font-size: 15px;
        line-height: 1.5;
        width: 100%;
        max-width: 220px;
        margin: auto;
    }