*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins",sans-serif;
}

body{

    background:#0F172A;
    color:white;
    min-height:100vh;

}

header{

    width:100%;
    padding:40px 20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;

}

header h1{

    font-size:2.3rem;
    font-weight:700;

}

#buscador{

    width:100%;
    max-width:600px;

    padding:15px 20px;

    border:none;
    outline:none;

    border-radius:12px;

    font-size:16px;

    background:#1E293B;
    color:white;

}

main{

    width:90%;
    max-width:1400px;

    margin:auto;

}

#catalogo{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));

    gap:30px;

    padding-bottom:50px;

}

.card{

    background:#1E293B;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    display:flex;

    flex-direction:column;

    border:1px solid rgba(255,255,255,.05);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.card img{

    width:100%;

    height:180px;

    object-fit:cover;

}

.info{

    padding:20px;

}

.info h2{

    font-size:22px;

    margin-bottom:15px;

}

.info p{

    margin-bottom:10px;

    color:#CBD5E1;

}

.btn{
    
    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    background:#2563EB;

    color:white;

    text-decoration:none;

    padding:15px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
    

}

.btn:hover{

    background:#1D4ED8;

}
.navbar{

    width:100%;

    padding:20px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#111827;

    position:sticky;

    top:0;

    z-index:1000;

}

.logo{

    font-size:28px;

    font-weight:700;

}

.navbar ul{

    display:flex;

    gap:30px;

    list-style:none;

}

.navbar a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.navbar a:hover{

    color:#3B82F6;

}

.hero{

    text-align:center;

    padding:80px 20px;

}

.hero h1{

    font-size:48px;

    margin-bottom:20px;

}

.hero p{

    color:#CBD5E1;

    margin-bottom:40px;

    font-size:20px;

}

footer{

    text-align:center;

    padding:40px;

    color:#94A3B8;

}

.imagen{

    overflow:hidden;

}

.imagen img{

    width:100%;

    height:390px;

    object-fit:cover;

    transition:.4s;

}

.card:hover img{

    transform:scale(1.08);

}

.contenido{

    padding:22px;

}

.contenido h2{

    font-size:22px;

    margin-bottom:22px;

    line-height:1.4;

}

.datos{

    display:flex;

    justify-content:space-between;

    margin-bottom:25px;

}

.datos div{

    display:flex;

    flex-direction:column;

}

.datos span{

    color:#94A3B8;

    font-size:14px;

    margin-bottom:5px;

}

.datos strong{

    color:white;

    font-size:16px;

}

#contador{

    margin-top:15px;

    background:#1E293B;

    padding:10px 18px;

    border-radius:10px;

    color:#CBD5E1;

}
.discord{

    width:48px;
    height:48px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#5865F2;

    color:white;

    font-size:24px;

    text-decoration:none;

    transition:.3s;

}

.discord:hover{

    transform:translateY(-3px);

    background:#4752C4;

}

