/* --- SEÇÃO HERO (BANNER PRINCIPAL) --- */
.hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/banner-ney.jpg'); /* Adicione um banner aqui */
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #1a1a1a;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
}

/* --- GALERIA DE FOTOS (SANTOS, BARÇA, SELEÇÃO) --- */
.carreira-fotos {
    padding: 80px 10%;
    background-color: #080808;
}

.carreira-fotos h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.foto-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.foto-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: 0.5s ease;
}

.foto-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
}

.foto-card:hover img {
    filter: grayscale(0%) brightness(1);
}

.legenda {
    padding: 20px;
    text-align: center;
    background: #000;
    color: var(--accent);
    font-weight: bold;
    letter-spacing: 1px;
    border-top: 1px solid #222;
}

/* --- MINI GAME DE PÊNALTIS --- */
#game-container {
    padding: 100px 20px;
    text-align: center;
    background: #050505;
}

.field {
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: #0a1f0a; /* Verde grama bem escuro */
    margin: 40px auto;
    border: 4px solid #1a1a1a;
    position: relative;
    border-radius: 10px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

#goal {
    width: 200px;
    height: 80px;
    border: 6px solid #eee;
    border-bottom: none;
    margin: 0 auto;
    position: relative;
    top: 0;
}

#ball {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, #fff, #999);
    border-radius: 50%;
    position: absolute;
    bottom: 30px;
    left: calc(50% - 15px); /* Centraliza a bola */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.controls {
    margin-top: 30px;
}

.controls button {
    background: #000;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 12px 25px;
    font-size: 1rem;
    margin: 10px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 4px;
}

.controls button:hover {
    background: var(--accent);
    color: #000;
    font-weight: bold;
}

#resultText {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade para telas menores */
@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; }
    .field { width: 90%; }
    #goal { width: 150px; }
}
