:root {
    --primary-dark: #7b0d10;
    --accent: #ffffff;
    --accent-hover: #f0f0f0;
    --luxury-gold: #c5a059;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --font-heading: 'Cinzel', serif;
    --font-serif: 'Lora', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.font-serif {
    font-family: var(--font-serif);
}

h1, h2, h3, .navbar-brand {
    font-family: var(--font-heading);
}

.bg-dark {
    background-color: var(--primary-dark) !important;
}

/* Apenas Consultoria Especializada em Dourado */
.text-accent {
    color: var(--luxury-gold) !important;
}

.btn-accent {
    background-color: #ffffff;
    color: #7b0d10 !important;
    border: none;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-accent:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-width: 2px;
}

.navbar {
    padding: 0.5rem 0;
    border-bottom: 2px solid #ffffff;
}

.navbar-brand {
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
}

.navbar-brand span {
    display: inline-block;
    padding-top: 0.3rem;
}

.navbar-brand img {
    height: 42px !important;
}

/* Hero Section com Parallax Real */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    /* A imagem fixa que cria o efeito Parallax */
    background: linear-gradient(rgba(123, 13, 16, 0.75), rgba(0, 0, 0, 0.85)), url('../img/perfil_hero.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    z-index: -1;
}

/* Fallback para Mobile (iOS não gosta de background-attachment: fixed) */
@media (max-width: 1024px) {
    .hero-section::before {
        background-attachment: scroll;
    }
}

.tracking-widest {
    letter-spacing: 0.2em;
}

/* Section divider */
.divider {
    width: 60px;
    height: 3px;
    background-color: #ffffff;
}

/* Hover effects */
.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-10px);
}

/* Profile Image */
.profile-img-wrapper {
    position: relative;
}

.profile-img-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--luxury-gold);
    z-index: -1;
    border-radius: 1rem;
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.wa-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Notification Popup */
#whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: none;
    z-index: 999;
    max-width: 250px;
    animation: slideIn 0.5s ease-out;
    border-left: 4px solid #25d366;
}

@keyframes slideIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

#whatsapp-popup p {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

#whatsapp-popup .close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #7b0d10;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    cursor: pointer;
    font-size: 12px;
}

/* Galeria Assimétrica */
.gallery-item-asymmetric {
    transition: all 0.3s ease;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 100vh;
        padding: 100px 0;
    }
    .profile-img-wrapper::after {
        display: none;
    }
}
