@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');




body{
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle, #fff, #bbb);
}
body {
	animation-name: aparicion;
	animation-duration: 1s; 
    animation-timing-function: linear; 
    animation-fill-mode: backwards;
}


.header{
    box-shadow: 0px 0.2em 14px -4px #333;
    background-color: #f5fa00;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 5.5em;
    padding: 5px 10%;
    z-index: 120;
    position: relative;
}


.header .logo{
    cursor: pointer;
    margin-right: auto;
}

.header .logo img{
    height: 4.5em;
    width: auto;
    transition: all 0.3s;
}

.header .logo img:hover{
    transform: scale(1.2);
}

.header .nav-links{
    list-style: none;
}

.header .nav-links li{
    display: inline-block;
    padding: 0 1em;    
}

.header .nav-links li:hover, .overlay a:hover{
    transform: scale(1.1);
}

.header .nav-links a{
    font-size: 700;
    color: #7a6d6d; 
}

.header .nav-links a:hover{
    color: #0e7eff;
}

.menu {
    display:none;
    
}

.header .btn button, .header .menu button{
    margin-left: 0.1em;
    font-weight: 700;
    color: #1b3039;
    padding: 0.6em 1.3em;
    background: #eceff1;
    border: none;
    border-radius: 2.3em;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.header .btn button:hover, .header .menu button:hover{
    background-color: #e2f1f8;
    color: #5aa1f3;
    transform: scale(1.1);
}






/*Nav Mobile*/

.header a{
    text-decoration: none;  
    /*borramos el que teniamos en .header .nav-links a*/ 
}

.header .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #b8bb09ee;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.header .overlay .overlay-content{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
}

.header .overlay a, .header .overlay ul{
    padding: 0.7em;
    font-size: 1.9em;
    display: block;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    color: #eceff1;
    text-align: center;
}

.header .overlay a:hover, .header .overlay a:focus{
    color: #5aa1f3;
}

.header .overlay .close{
    position: absolute;
    top: -0.3em;
    right: 0.2em;
    font-size: 4em;
}





.titulo {
    text-align: center;
    padding-top: 0.5em;
    width: 100%;
    color: #7a6d6d;
    z-index: 10;
    background-color: #f5fa00;
    margin-top: 0;
    position: relative;
    


}

.cinturonescontainer {
    z-index: 5;
    padding: 0.5em;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 1em 0em;
}
.card {
    box-shadow: 7px 7px 10px -3px #222;
    
    width: 25rem;
    view-timeline-name: --image;
    view-timeline-axis: block;

}

.card-title {
    text-align: center;
}

.botonboots {
    margin-left: 25%;
    justify-items: center;
}
.contenido {
    display: flex;
   
}

main {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

aside {
  
    /*width: 20%;
    background: #fff;
    height: 100%;
    position: fixed;
    margin-left: 85%;
    margin-top: -5em;
    z-index: 20;*/
    display: none;
    
}


footer {
    width: 100%;
    background-color: #f5fa00;
    display: flex;
    margin-top: 5%;
    justify-content: center;
    padding-top: 1em;
    box-shadow: 4px -7px 14px -4px #000;
}

.contfooter {
    width: 95%;
    display: flex;
    flex-direction: row;
    padding: 1em 0;
    border-top: 0.1em solid #888;
}

.contfooter .footpart {
    width: 33.3%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.footpart p {
    text-align: center;
    padding: 0;
    display: inline;
    margin-bottom: 0;
}

.part3{
    display: flex;
    justify-content: flex-end;
    margin-right: 1.5em;
    gap: 0.5em;
}

.part2 {
    display: flex;
    flex-direction: column;
}

.part3 img {
    width: 3em;
}

.part1 p{
    margin-left: 2%;
} 

.part1 img{
    object-fit: cover;
    height: 3em;
    filter: drop-shadow(2px 3px 5px #000);
    z-index: 5;
}

.espaciopublicidad{
    display: none;
}

.aviso-cookies {
	display: none;
	background: #fff;
	padding: 20px;
	width: calc(100% - 40px);
	max-width: 300px;
	line-height: 150%;
	border-radius: 10px;
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 100;
	padding-top: 60px;
	box-shadow: 0px 2px 20px 10px rgba(222,222,222,.25);
	text-align: center;
}

.aviso-cookies.activo {
	display: block;
}

.aviso-cookies .galleta {
	max-width: 100px;
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
}

.aviso-cookies .titulo, .aviso-cookies .parrafo {
	margin-bottom: 15px;
}

.aviso-cookies .boton {
	width: 100%;
	background: #bfc205;
	border: none;
	color: #222;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	padding: 15px 20px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s ease all;
	border-radius: 5px;
	margin-bottom: 15px;
	font-size: 14px;
}

.aviso-cookies .boton:hover {
	background: #000;
}

.aviso-cookies .enlace {
	color: #222;
	text-decoration: none;
	font-size: 14px;
}

.aviso-cookies .enlace:hover {
	text-decoration: underline;
}

.fondo-aviso-cookies {
	display: none;
	background: rgba(0,0,0,.20);
	position: fixed;
	z-index: 99;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}

.fondo-aviso-cookies.activo {
	display: block;
}

@media screen and (max-width: 800px){
    .nav-links, .btn {
        display: none;
    }
    .menu {
        display: inherit;
    }

    .contenedortextointro {
        flex-direction: column;
        align-items: center;
    }
    .textointro {
        width: 100%;
        font-size: 20px;
        margin-top: 2%;
    }

    img[src="img/textoimagen.png"]{
        border-radius: 50%;
        width: 20em;
        height: 20em;
        border: 2px solid #bfc205;
    }

    main {
        width: 100%;
    }

    /*aside {
        height: 7em;
        width: 100%;
        bottom: 0;
        margin-left: 0;
    }*/

    footer {
        width: 100%;
    }

    .contfooter {
        flex-wrap: wrap;
        gap: 1em;
    }

    .part3 {
        justify-content: space-around;
    }

    .contfooter .footpart{
        width: 100%;
    }

    .contfooter .footpart p{
        text-align: center;
    }

    /*.espaciopublicidad {
        height: 7em;
        position: relative;
        width: 100%;
        display: inline-block;
    }*/

    .titulo {
        padding-top: 0.8em;
        font-size: 1.6em;
    }

    .botonboots {
        font-size: 1em;
    }
    .wave2 {
        margin-top: -0.1em;
    }

}

@media screen and (max-height:450px) {
    .header .overlay a{
        font-size: 20px;
    }
    .header .overlay .close{
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}


@keyframes aparicion {
    0% {
        filter: opacity(0%);
    }
    30% {
        filter: opacity(30%);
    }
    70% {
        filter: opacity(60%);
    }
    100% {
        filter: opacity(100%);
    }
}

@keyframes show {
    from {
        opacity: 0;
        scale: 25%;
    }

    to {
        opacity: 1;
        scale: 100%;
    }
}