@charset "utf-8";

/* --- Variáveis Globais de Design --- */
:root {
    --primary-color: #1a2530; /* Azul escuro corporativo sóbrio */
    --gold-color: #bfa15f;    /* Tom Ouro Envelhecido elegante */
    --gold-hover: #a38444;
    --dark-neutral: #111a24;
}

/* --- Tipografia e Elementos Gerais --- */
body {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.justify-text {
    text-align: justify;
}

.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }

.fs-12 { font-size: 12px; }
.fs-13 { font-size: 13px; }
.fs-14 { font-size: 14px; }
.fs-15 { font-size: 15px; }

.tracking-wider { letter-spacing: 0.1em; }
.tracking-wide { letter-spacing: 0.05em; }

.text-gold {
    color: var(--gold-color) !important;
}

.bg-gold {
    background-color: var(--gold-color) !important;
}

/* Transições suaves globais */
.transition {
    transition: all 0.3s ease-in-out;
}

/* Alinhamento de padding para as seções */
.section-padding {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
}

/* --- Navbar Customizada --- */
#navbar-principal {
    background-color: var(--primary-color);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#navbar-principal.navbar-scrolled {
    background-color: var(--dark-neutral);
    padding: 0.7rem 0;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    color: var(--gold-color);
    font-weight: 500;
}

#navbar-principal .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-top: 3px solid transparent;
}

#navbar-principal .nav-link:hover,
#navbar-principal .nav-link.active {
    color: #fff !important;
    border-top: 3px solid var(--gold-color);
}

/* --- Hero / Home Section --- */
.hero-section {
    background: linear-gradient(rgba(17, 26, 36, 0.75), rgba(17, 26, 36, 0.85)), 
                url('../img/fundo_hero.jpg') no-repeat center center;
    background-size: cover;
    min-height: 85vh;
}

/* --- Botões Customizados --- */
.btn-gold {
    background-color: var(--gold-color);
    color: #fff;
    border: 1px solid var(--gold-color);
    border-radius: 4px;
    transition: all 0.25s ease-in-out;
}

.btn-gold:hover, .btn-gold:focus {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    color: var(--dark-neutral);
    transform: translateY(-2px);
}

/* --- Cards da Seção de Áreas --- */
.feature-card {
    border-radius: 8px;
    border-bottom: 3px solid transparent !important;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-bottom: 3px solid var(--gold-color) !important;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.075) !important;
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
}

/* --- Efeito hover na opacidade dos links do Footer --- */
.hover-opacity-100:hover {
    opacity: 1 !important;
}

/* --- Estilização dos inputs do formulário --- */
.form-control:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 0 0.25rem rgba(191, 161, 95, 0.15);
}

/* --- Widget Flutuante do WhatsApp --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    z-index: 9999;
    text-decoration: none;
}

.whatsapp-btn:hover {
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
}

/* --- Animações Simples de Entrada --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

/* --- Ajustes Responsivos --- */
@media (max-width: 991.98px) {
    #navbar-principal {
        background-color: var(--dark-neutral) !important;
    }
    #navbar-principal .nav-link {
        border-top: none;
        border-left: 3px solid transparent;
        padding: 0.7rem 1rem !important;
    }
    #navbar-principal .nav-link:hover,
    #navbar-principal .nav-link.active {
        border-left: 3px solid var(--gold-color);
        background-color: rgba(255, 255, 255, 0.03);
    }
    .section-padding {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
}