/* Seccion Header */
.menu__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 13vh;
    padding-right: 10vw;
}
.menu__items{
    height: 2rem;
    display: flex;
    justify-content: center;
    width: 60vw;
}
.menu__buscador{
    display: flex;
    align-items: center;
}
.input__buscador{
    width: 30vw;
    height: 2.5rem;
    border-radius: 20px;
    margin-left: 10%;
    padding-left: 15%;
    font-size: 1.2rem;
    color: #808080;
    background-color: #f3f3f3;
    border-color: none;
    outline: none;
    display: flex;
    align-items: center;
    background: url(../img/lupa.png) no-repeat 5px ;
    transform: scale(0.8);
}
.input__buscador:focus{
    color: #808080;
    transform: scale(0.85,0.85);
}
.menu__header__btn{
    /* margin-right: 10vw; */
    width: 13vw;
    height: 2.5rem;
    color: #2A7AE4;
    border-color: #2A7AE4;
    background: none;
    border-radius: 10px;
}
.menu__header__btn:hover{
    cursor: pointer;
}
/* Seccion Banner */
.banner__container{
    background: url("../img/Hero.png") no-repeat center / cover;
    width: 100%;
    height: 50%;
    position: absolute;
    
}

.banner__text {
    color: #fdfdfd;
    position: absolute;
    padding-left: 10%;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.75);
    top: 50%;
    width: 90%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8
    ) 0%, rgba(255,255,255,0) 100%);
    
}
.banner__titletext{
    font-size: 2.4rem;
    margin-bottom: 1%;
    font-weight: bold;
}
.banner__subtext{
    font-size: 1.2rem;
    margin-bottom: 1%;
}
.banner__btn{
    width: 11%;
    height: 2.5rem;
    background: #2A7AE4;
    color: #fdfdfd;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
/* Seccion Productos */
.productos__container{
    position: relative;
    top: 50vh;
    width: 100%;
}
.productos__title{
    padding: 3% 5% .2rem 5%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #808080;
}
.title__starwars, .title__consolas, .title__diversos{
    font-size: 1.8rem;
    font-weight: bolder;
}
.verproducto__btn, .vertodo__btn{
    border: none;
    color: dodgerblue;
    background: none;
    font-size: 1rem;
}
.verproducto__btn:hover, .vertodo__btn:hover{
    cursor: pointer;
}
.productos__list{
    display: flex;
    width: 95%;
    flex-wrap: wrap;
    margin: 0 2.5%;
    justify-content: space-evenly;
}
.card{
    margin: .5% 1%;
    flex-basis: 11rem;
}
.producto__box{
    display: flex;
    flex-direction: column;
    margin: 0.5%;
    justify-content: center;
}
.producto__img{
    border-radius: 5%;
    margin-bottom: 3%;
}
.producto__precio{
    margin-bottom: 3%;
    font-weight: bolder;
}
.producto__name, .verproducto__btn{
    margin-bottom: 3%;
}

/* Seccion Rodapie */
.footer__container{
    position: relative;
    top: 50vh;
    width: 100%;    
}
.footer__contacto{
    background-color: #DFFDFF;
    padding: 4% 6%;
    display: flex;
    justify-content: space-around;
}
.contacto__img{
    height: 2rem;
}
.footer__links{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 30vh;
    font-weight: 500;
}
.contacto__form{
    display: flex;
    flex-direction: column;
    width: 30%;
}
.text__contacto{
    font-weight: bolder;
    margin-left: 3%;
    margin-bottom: 3%;
}
.input__name, .input__mensaje{
    background-color: #fdfdfd;
    border: none;
    margin-bottom: 3%;
    padding-left: 3%;
}
.input__name{
    height: 2rem;
    border-radius: 15px;
    width: 90%;
}
.input__mensaje{
    width: 90%;
    border-radius: 15px;
    resize: none;
    font-size: .9rem;
}
.input__name::placeholder, .input__mensaje::placeholder{
    color: darkgrey;
}
.input__name:focus, .input__mensaje:focus{
    outline: dashed #808080 ;
}
.contacto__btn{
    width: 40%;
    height: 2rem;
    margin-left: 4%;
    background: #2A7AE4;
    color: #fdfdfd;
    border: none;
    border-radius: 8px;
}
.contacto__btn:hover{
    transform: scale(1.1);
    transition: 1s;
}
.footer__rodapie{
    text-align: center;
    padding: 1% 0;
}
/* ///validacion Formulario Contacto/// */
.input-message-error{
    display: none;
    justify-content: center;
    color: #ff000080;
}
.input__container-invalido .input{
    border:2px dotted #ff000060;

}
.input__container-valido .input{
    border:3px dotted #00DCF5;
    
}
.mensaje__envioCorrecto, .mensaje__envioIncorrecto{
    display: none;
}
.mensaje__envioCorrecto-activo{
    color: #303030;
    margin-top: 2%;
    background-color: rgb(126, 242, 186);
    border-radius: 15px;
    opacity: 0.9;
    display: flex;
    padding: 5%;
    justify-content: center;
}
