/* global.css */

/* 1. Variáveis de tema */
:root {
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --charcoal: #4a4a4a;
    --cream: #f8f6f0;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --soft-gray: #6b6b6b;
}

/* 2. Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 3. Base do body */
html,
body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    height: 100%;
    margin: 0;
    padding: 0;
}

/* 4. Navbar comum */
.navbar {
    background: rgba(74, 74, 74, 0.52) !important;
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.653);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold) !important;
    text-decoration: none;
}

.logo-image {
    max-width: "250px";
    height: "auto";
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

/* 5. Dropdowns */
.dropdown-menu {
    background: var(--soft-gray);
    border: 1px solid var(--gold);
    border-radius: 0;
}
.dropdown-item {
    color: var(--white) !important;
    font-weight: 400;
    padding: 12px 20px;
}
.dropdown-item:hover {
    background: var(--gold);
    color: var(--charcoal) !important;
}

/* 6. Stats section e footer */
.stats-section {
    background: var(--soft-gray);
    color: var(--white);
}
.stat-item {
    text-align: center;
    padding: 0 20px;
}
.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
}
.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.footer {
    background: var(--soft-gray);
    color: var(--white);
    padding: 0 0 40px;
}
.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-tagline {
    color: #ccc;
    font-style: italic;
    margin-bottom: 30px;
}
.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--gold);
}
.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: var(--gold);
}
.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.contact-info i {
    color: var(--gold);
    margin-right: 15px;
    width: 20px;
}
.copyright {
    border-top: 1px solid #888;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    color: #ccc;
}

/* 7. Media queries comuns */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}
