:root{
    --color-fondo: #000000;
    --color-navbar: #1e2222;
    --color-texto: #ffffff;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header {
    background-color: var(--color-navbar);
    display: flex;
    flex-direction: column;
    color: gray;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 90px;
    box-shadow: #000000 0px 0px 40px;
    z-index: 99;
}
header .encabezado{
    display: flex;
    width: 100%;
    height: 90px;

}
header .logo{
    display: flex;
    width: 50%;
    align-items: center;
    margin-left: 20px;
}
header .logo img{
    width: 120px;
    height: 120px;
}
header nav{
    display: flex;
    width: 50%;
    justify-content: space-evenly;
    align-items: center;
    margin-right: 20px;
}
nav ul{
    display: flex;
}
nav ul li{
    list-style: none;
    margin: 0 10px;
}
nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-family: 'Prompt', sans-serif;
}
nav ul li a:hover{
    color: #38B6FF;
}
nav ul li a::after{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #38B6FF;
    transition: width .3s ease-in-out;
}
nav ul li a:hover::after{
    width: 100%;
}

/*Boton Login Inicio */
header .hamburguesa{
    display: none;
}
.nav-container .btnLoguin-popup{
    width:100px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #38B6FF;
    font-family: 'Prompt', sans-serif;
    color: var(--color-texto);
    font-size: 16px;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.5s ease;
    font-weight: 800;
}

.nav-container .btnLoguin-popup:hover{
    background-color: #38B6FF;
    transition: 0.5s ease;
    transform: scale(1.1);
}
nav .btn-close{
    display: none;
}

.wrapper{
    position: fixed;
    left: 40%;
    top: 20%;
    width: 400px;
    height: 440px;
    background-color: var(--color-navbar);
    border: 2px solid #38B6FF;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transform: scale(0);
    transition: transform .5s ease, height .2s ease;
    z-index:  10;
}

.wrapper.active-popup{
    transform: scale(1);
}

.wrapper.active{
    height: 500px;
}

.wrapper .form-box{
    width: 100%;
    padding: 40px;
}


.wrapper .form-box.login{
    transition: transform .18s ease;
    transform: translateX(0);
}

.wrapper.active .form-box.login {
    transition: none;
    transform: translateX(-400px);
}

.wrapper .form-box.register {
    position: absolute;
    transition: none;
    transform: translateX(400px);
    
}

.wrapper.active .form-box.register {
    transition: transform .18s ease;
    transform: translateX(0);
}

.wrapper .icon-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: #38B6FF;
    font-size: 2em;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-bottom-left-radius: 20px;
    z-index: 1;
}

.form-box h2{
    font-size: 2em;
    color: #fff;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}
.input-box {
    position: relative;
    left: 10%;
    width: 80%;
    height: 50px;
    border-bottom: 2px solid #fff;
    margin: 30px 0;
}

.input-box label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    font-weight: 500;
    pointer-events: none;
    transition: .5s;
    color: #fff;
    font-family: 'Prompt', sans-serif;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label{
    top: -5px;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
    color: #fff;
    padding: 0 35px 0 5px;
}

.input-box .icon{
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: #38B6FF;
    line-height: 57px;
}

.remember-forgot {
    font-size: .9em;
    color: #fff;
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Prompt', sans-serif;

}
.remember-forgot label{
    position: relative;
    left: 10%;
}

.remember-forgot label input{
    accent-color: #162938;
    margin-right: 3px;
    position: relative;
}


.remember-forgot a{
    color: #fff;
    text-decoration: none;
}

.remember-forgot a:hover{
    color: #38B6FF;
    transition: .5s;
    text-decoration: underline;
}

.btn{
    width: 80%;
    height: 45px;
    background-color: #3e444181;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #fff;
    position: relative;
    left: 10%;  
    cursor: pointer;
    transition: .5s;
}

.btn:hover{
    background-color: #38B6FF;
    color: #fff;
    transition: .5s;
    transform: scale(1.03);
}

.login-register{
    font-family: 'Prompt', sans-serif;
    font-size: .9em;
    color: #fff;
    text-align: center;
    font-weight: 500;
    margin: 25px 0 10px;
}

.login-register p a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .5s;
}

.login-register p a:hover{
    color: #38B6FF;
    transition: .5s;
    text-decoration: underline;
}
/* Fin Boton Login*/
#app{
    margin-top: 150px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

}
#app .card{
    width: 50%;
    height: 300px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;

    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
    overflow: hidden;
    gap: 20px;
    margin: 0 20px 30px 0;
    box-shadow: -1px 2px 6px 5px rgba(0,0,0,0.75);
}
#app .card_img{
    width: 50%;
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    overflow: hidden;
    transition: 0.5s ease;
    border-right: 1px solid #00000062;
    margin-left: 15px;
    box-shadow: 15px 0px 70px -12px rgba(0,0,0,0.47);
    
}
#app img{
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
}

#app img:hover{
    transform: scale(1.1);
    transition: 0.5s ease;
}
#app .card:hover{
    transform: scale(1.1);
    transition: 0.5s ease;
    box-shadow: -1px 2px 31px 7px rgba(0,0,0,0.75);
}
#app .card .card_info{
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}
#app .card .card_info .card_titles{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#app .card .card_info .card_titles h3{
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #38B6FF;
    margin: 0 10px 0 10px;
    padding: 0;
    transition: 0.5s ease;
}

#app .card .card_info .card_titles h4{
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    margin: 0;
    color: rgba(0,0,0,0.28);  
    transition: 0.5s ease;
}
#app .card .card_info p{
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: rgba(0, 0, 0, 0.808);  
    transition: 0.5s ease;
}

#app .card .card_info .card_titles h3:hover{
    color: #3b3d3d93;
    transition: 0.5s ease;
}
#app .card .card_info .card_titles h4:hover{
    color: #3b3d3d93;
    transition: 0.5s ease;
}
#app .card .card_info .card__price{
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(44, 38, 38, 0.781);  
    transition: 0.5s ease;
}

#app .card .card_info button{
    width: 30%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 7px;    
    background-color: #38B6FF;
    color: #fff;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s ease;
}

#app .card .card_info button:hover{
    color: rgba(44, 38, 38, 0.781);  
    transition: 0.5s ease;
    transform: scale(1.1);
}
#app .paginado ul{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 15px;
    list-style: none;
}

#app .paginado ul a{
    text-decoration: none;
    color: #050c0f;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    border: 1px solid #050c0f63;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.5s ease;
    box-shadow: -1px 2px 7px 2px rgba(0,0,0,0.75);
}
#app .paginado ul a:hover{
    background-color: #38b6ff60;
    color: #3b3d3dee;
    transition: 0.5s ease;
    transform: scale(1.1);
    box-shadow: -1px 2px 7px 2px rgba(0,0,0,0.75);
}









footer{
    width: 100%;
    height: 100%;
    background-color: #38B6FF;
    margin-top:50px;
}
footer .footer-container{
    width: 100%;
    height: 100%;
    display:flex;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px -12px 17px 6px rgba(0,0,0,0.28);
}
.footer-container .footer-container-title p{
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    margin-top: 10px;
    color:#fff;
    transition: 1s ease;
}
.footer-container .footer-container-title p:hover{
    transition: 1s ease;
    color: var(--color-navbar);
}
.footer-container ul{
    display:flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;

    gap: 25px;
}
.footer-container-social a{
    text-decoration: none;
    color:#fff;
    font-size: 35px;
    transition: 0.5s ease;
}
.footer-container-social a:hover{
    transition: 0.5s ease;
    color: var(--color-navbar);
}