/* Configurações Gerais e Cores Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
    padding-bottom: 80px;
}

/* Menu Superior (Navbar) */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    border-bottom: 1px solid #1c1c1c;
    background-color: #0b0b0b;
}

.logo {
    color: #d4a373;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #d4a373;
    text-decoration: underline;
}

/* Container Principal */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Títulos de Introdução */
.section-intro {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 50px;
}

.main-title {
    color: #d4a373;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.subtitle {
    color: #a0a0a0;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Resumo Técnico / DNA do Atleta */
.dna-section {
    background-color: #121212;
    border: 1px solid #1c1c1c;
    border-radius: 6px;
    padding: 35px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.dna-title {
    color: #d4a373;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.dna-text {
    color: #b3b3b3;
    font-size: 1rem;
    text-align: justify;
}

/* Grade de Dribles (Grid) */
.grid-title {
    color: #ffffff;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border-left: 4px solid #d4a373;
    padding-left: 12px;
}

.dribles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Cartões Individuais de Drible */
.drible-card {
    background-color: #121212;
    border: 1px solid #1c1c1c;
    border-radius: 6px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drible-card:hover {
    transform: translateY(-5px);
    border-color: #d4a373;
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.1);
}

.drible-name {
    color: #d4a373;
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.drible-desc {
    color: #b3b3b3;
    font-size: 0.95rem;
    text-align: justify;
    margin-bottom: 15px;
}

.drible-tag {
    align-self: flex-start;
    background-color: rgba(212, 163, 115, 0.1);
    color: #d4a373;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
