/* --- VARIAVEIS E GERAL --- */
:root {
    --primary-color: #002B5B; /* Azul Navy Profundo */
    --accent-color: #FFD700;  /* Ouro Vibrante */
    --text-dark: #1A1A1A;
    --text-light: #6c757d;
    --bg-light: #F4F7F6;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a { text-decoration: none; transition: 0.3s; }

/* --- TOPBAR & NAVBAR --- */
.topbar {
    background-color: var(--primary-color);
    font-size: 0.85rem;
}
.topbar a { color: rgba(255,255,255,0.7); margin-left: 15px; }
.topbar a:hover { color: var(--accent-color); }

.navbar { background: #fff; padding: 15px 0; }
.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 0 5px;
}
.navbar-nav .nav-link:hover { color: #0056b3 !important; }

/* --- HERO SECTION (BANNER) --- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(0,43,91,0.9) 0%, rgba(0,43,91,0.7) 100%), url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    padding: 140px 0 100px;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); /* Corte diagonal moderno */
}

/* --- CARDS E SERVIÇOS --- */
.card {
    border: none;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,43,91,0.15) !important;
}

.card-service {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 20px;
    border-radius: 15px;
}
.card-service:hover { border-color: var(--accent-color); }

/* --- TABELAS ESPORTIVAS --- */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 43, 91, 0.03);
}
.table-dark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* --- BOTÕES --- */
.btn-warning {
    background-color: var(--accent-color);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.btn-warning:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* --- TIMELINE DO ALBERTO (Página Sobre) --- */
.timeline-list {
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    list-style: none;
}
.timeline-item {
    position: relative;
    margin-bottom: 20px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid #fff;
}

/* --- FOOTER --- */
footer {
    background: #111;
    color: #bbb;
    font-size: 0.9rem;
    margin-top: auto;
}
footer h5 { color: #fff; margin-bottom: 20px; }
/* --- FOOTER CUSTOMIZATION --- */
footer {
    background-color: #0b0e14 !important; /* Um preto azulado muito elegante */
    font-size: 0.9rem;
}

.footer-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color) !important; /* Fica dourado ao passar o mouse */
    transform: translateX(5px); /* Move levemente para a direita */
}

.hover-gold:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px); /* Ícone sobe levemente */
    display: inline-block;
    transition: 0.3s;
}

/* Ajuste para textos suavizados */
.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}
/* Estilo do Formulário de Contato */
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 43, 91, 0.15);
}
.form-label {
    color: var(--primary-color);
    letter-spacing: 0.5px;
}