/*RESET*/
*{
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
	box-sizing: border-box;
}

.ful-img{
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0 , 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.ful-img img{
    width: 90%;
    max-width: 600px;
}

.ful-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color:#FFFFFF;
    cursor: pointer;
}

/*HEADER*/
header{
    height: 100px;
    background: #FFFFFF;  
    padding: 0 50px;
    color: #3F255C;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu a{
    color:#3F255C;
    text-decoration: none;
    padding: 0 10px;
    transition: 0.4s;
    font-size: 13pt; 
}

.mostrar-menu,
.esconder-menu{
    font-size: 30px;
    cursor: pointer;
    display: none;
    transition: 0.4s;
}

.mostrar-menu{
    order:1;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
    color: #FCC425;
    background: #3F255C; 
}

#check{
    display: none;
}


/*SECCION PRODUCTOS */
#productos{
    padding: 10px 10px;
    display: flex; 
     justify-content: center;   
    text-align: center; 
}

#productos div h4{
    color: #3F255C;
    font-size: 15pt;
    margin: 15px 0;
    transition: 0.4s;
}

#productos div h4:hover{
    color: #FCC425;
    font-size: 15pt;
    margin: 15px 0;
    transition: 0.4s;
}

#productos div h2{
    color: #3F255C;
    font-size: 10pt;
    margin: 15px 0;
    transition: 0.4s;
}

#productos a{
    text-decoration: none;
}

#buscar{
	text-align: center;
}

#busqueda{
	border-radius: 5px;
	height: 30px;
	padding-left: 10px;
}

#lupa{
	height: 30px;
	padding-top: 5px;
}

#contacto{
    text-align: center;
}


/*
#formulario input{
    text-transform: uppercase;
}  */
/*.img-gallery-busqueda img{
	width: 250px;
	height: 250px;
	object-fit: cover;
}
*/
/* caja de texto para busqueda */
.img-gallery-busqueda{
	width: 100%;
}

.img-gallery{
    width: 80%;
    margin: 50px auto 50px;
    display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}


.img-gallery img{
    width: 250px;
    height: 200px;
    cursor: pointer;
    object-fit: cover;
}


.img-gallery img:hover{
    transform: scale(1.2);
    transition: 1s;
} 

.producto-consultado{
    text-align: center;
}

.producto-consultado img{
    padding: 20px 0 0 0;
    height:400px;
}

#texto{
    color: #3F255C;
}


/* RESPONSIVE */
@media(max-width : 800px){
    /*HEADER*/
    .mostrar-menu,
    .esconder-menu{
        display: block;
    }

    .menu{
        position: fixed;
        width: 100%;
        height: 100%;
        background: #FCC425;
        right: -100%;
        top: 0;
        text-align: center;
        padding: 100px 0;
        z-index: 100;
        transition: 0.8s;
         
    }

    .menu a{
        display: block;
        padding: 20px;
    }

    .esconder-menu{
        position: absolute;
        top: 40px;  
        right: 40px; /*posicion de la X*/
    }

    #check:checked ~ .menu{
        right: 0;
    }

    #productos{
        flex-direction: column;
        align-items: center;
    }


}

