:root {
    --primary-color: #0056b3;
    --dark-blue: #002d5d;
    --secondary-color: #f8f9fa;
}

/* Base e Scroll */
html, body { 
    overflow-x: hidden; 
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    scroll-behavior: smooth; 
}

.main-wrapper {
    overflow-x: hidden;
    width: 100%;
}

/* --- NAVBAR --- */
.navbar { background-color: var(--dark-blue); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-link { 
    color: rgba(255, 255, 255, 0.7) !important; 
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}
.nav-link:hover { color: white !important; }
.nav-link.active { color: rgba(255, 255, 255, 0.7) !important; } 
.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-download { background-color: #dc3545; color: white; border-radius: 50px; padding: 5px 20px; font-weight: bold; border: none; transition: 0.3s; }
.btn-download:hover { background-color: #a71d2a; color: white; transform: scale(1.05); }

/* --- FOOTER --- */
.footer-link { text-decoration: none; color: #adb5bd; transition: 0.3s; }
.footer-link:hover { color: var(--primary-color); padding-left: 5px; }

.social-icon-link {
    transition: all 0.3s ease;
    display: inline-block;
    color: #adb5bd;
    text-decoration: none;
}
.social-icon-link:hover {
    color: var(--primary-color) !important;
    transform: scale(1.1) translateY(-3px);
}

/* Ajustes Globais Bootstrap */
.row { --bs-gutter-x: 1.5rem; margin-right: 0; margin-left: 0; }