 * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Arial Black', sans-serif; 
}

body { 
    background-color: #121212; 
    color: white; 
}

nav {
    background-color: #000;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ff6600;
    position: sticky;
    top: 0;
    z-index: 100;
}

footer {
    background: #000; 
    color: #555; 
    text-align: center; 
    padding: 40px; 
    margin-top: 50px;
}

.logo-link {
  color: white;
  text-decoration: none;
}

.logo { 
    color: #ff6600; 
    font-size: 1.2rem; 
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-center input {
    padding: 8px;
    border-radius: 4px;
    border: none;
    width: 200px;
}

.nav-jersey {
    background: #ff6600;
    color: white;
    border: 1px solid #ff6600;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s; 
}

.nav-tenis {
    background: #ff6600;
    color: white;
    border: 1px solid #ff6600;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s; 
}

.nav-shorts {
    background: #ff6600;
    color: white;
    border: 1px solid #ff6600;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-btn {
    background: none;
    color: white;
    border: 1px solid white;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-btn:hover { 
    background: #ff6600; 
    border-color: #ff6600;
 }

.login {
    background: #ff6600;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
}

.banner {
    width: 100%;
    height: 450px;
    background: linear-gradient(to right, rgba(0,0,0,0.7), transparent), url('/imagens/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.banner-texto h1 { 
    font-size: 4rem; 
    color: #ff6600; 
    font-style: italic;
 }

.container { 
    padding: 50px 5%; 
}
        
.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ff6600;
    
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.product-card:hover { 
    transform: scale(1.03); 
    border: 1px solid #ff6600; 
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #fff;
    border-radius: 5px;
}

.product-card h3 { 
    margin: 15px 0 5px; 
    font-size: 1rem; 
}

.product-card p { 
    color: #ff6600; 
    font-size: 1.2rem; 
    margin-bottom: 15px; 
}

.btn-view {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    width: 100%;
    border-radius: 4px;
}

