/* Gav Assessoria Contabil - Custom Styles */

:root {
    --navy: #00203F;
    --gold: #AD8B19;
    --gold-hover: #8E7214;
    --light-gray: #F8F9FA;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.text-navy { color: var(--navy); }
.bg-navy { background-color: var(--navy); }
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }

.btn-gold {
    background-color: var(--gold);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: white;
    transform: translateY(-2px);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--navy) !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--gold);
    margin: 20px 0;
}

.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--gold) !important;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(173, 139, 25, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
}
