body{
    background-color: #0b0b0b;
    color: white;
    font-family: Arial, sans-serif;
}

/* NAVBAR */

.navbar{
    background: rgba(15,15,15,0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192,192,192,0.2);
}

.navbar-brand{
    color: silver !important;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-link{
    color: white !important;
    transition: 0.3s;
}

.nav-link:hover{
    color: silver !important;
}

/* BOTONES */

.btn-light{
    background: silver;
    border: none;
    color: black;
    font-weight: bold;
    transition: 0.3s;
}

.btn-light:hover{
    transform: scale(1.03);
}

/* HERO */

.hero{
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
    linear-gradient(rgba(0,0,0,0.7),
    rgba(0,0,0,0.8)),
    url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?q=80&w=2070');

    background-size: cover;
    background-position: center;
}

.hero h1{
    font-size: 5rem;
    font-weight: bold;
    color: silver;
}

.hero p{
    font-size: 1.2rem;
    color: #ddd;
}

/* CARDS */

.product-card{
    background: #111;
    border: 1px solid rgba(192,192,192,0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
}

.product-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(192,192,192,0.15);
}

.product-card img{
    height: 350px;
    object-fit: cover;
}

.product-info{
    padding: 20px;
}

.product-title{
    font-size: 1.2rem;
    font-weight: bold;
}

.product-team{
    color: silver;
    font-size: 0.9rem;
}

.product-price{
    font-size: 1.5rem;
    font-weight: bold;
}

/* FILTROS */

.filter-box{
    background: #111;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(192,192,192,0.1);
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero h1{
        font-size: 3rem;
    }

    .hero p{
        font-size: 1rem;
    }

}