/* --- CONFIGURAÇÕES GERAIS --- */
:root {
    --verde: #2c4c3b;
    --dourado: #d4af37;
    --branco: #ffffff;
    --gelo: #f4f4f4;
    --texto: #333;
    --texto-claro: #eaeaea; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: var(--texto); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, .logo-title { font-family: 'Playfair Display', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; border-radius: 8px; display: block; }
.bg-branco { background-color: var(--branco); }
.bg-gelo { background-color: var(--gelo); }
.bg-verde { background-color: var(--verde); }
.text-center { text-align: center; }
.text-justify { text-align: justify; }

/* --- NAVBAR E LOGO ATUALIZADA --- */
#header {
    background: var(--verde);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.4s;
}
.navbar { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; flex-direction: row; gap: 12px; }
.logo img { height: 50px; width: auto; margin: 0; }
.logo-text-container { display: flex; flex-direction: column; justify-content: center; }
.logo-title { color: var(--dourado); font-size: 1.4rem; font-weight: 700; white-space: nowrap; line-height: 1.1; }

/* SEPARADOR SIMPLIFICADO (APENAS UM TRAÇO) */
.logo-simple-line {
    height: 1.5px;
    background-color: var(--dourado);
    width: 30%;
    margin: 6px 0 4px 0;
}

.logo-subtitle { 
    color: var(--texto-claro); 
    font-size: 0.65rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 500; 
    max-width: 280px; 
    line-height: 1.3; 
}

.nav-menu { display: flex; list-style: none; align-items: center; }
.nav-menu li a { color: var(--branco); text-decoration: none; margin: 0 15px; font-weight: 500; font-size: 0.95rem; transition: 0.3s; }
.nav-menu li a:hover { color: var(--dourado); }
.btn-nav { background: var(--dourado); color: var(--verde) !important; padding: 10px 20px; border-radius: 5px; font-weight: 600 !important; }

.menu-toggle { display: none; cursor: pointer; color: var(--dourado); font-size: 1.8rem; }

/* Mobile Navbar */
@media (max-width: 900px) {
    .menu-toggle { display: block; z-index: 1001; } 
    .logo img { height: 40px; }
    .logo-title { font-size: 1.1rem; }
    .logo-simple-line { max-width: 170px; }
    .logo-subtitle { 
        display: block !important; 
        font-size: 0.55rem; 
        white-space: normal; 
        max-width: 170px; 
        line-height: 1.2;
    }
    .nav-menu { 
        position: absolute;
        top: 100%; 
        left: -100%; 
        flex-direction: column;
        background-color: var(--verde);
        width: 100%;
        text-align: center;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        padding: 20px 0 30px;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 20px 0; }
    .btn-nav { display: inline-block; margin-top: 10px; }
}

/* --- HERO SECTION --- */
.hero { padding: 160px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tag { color: var(--dourado); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
.hero h1 { font-size: 3.2rem; color: var(--verde); margin: 20px 0; line-height: 1.1; }
.hero p { font-size: 1.1rem; margin-bottom: 30px; }
.btn-primary { background: var(--verde); color: var(--branco); padding: 15px 35px; border-radius: 5px; text-decoration: none; display: inline-block; font-weight: 600; transition: 0.3s; }
.btn-primary:hover { background: var(--dourado); color: var(--verde); }

@media (max-width: 768px) {
    .hero { padding: 120px 0 60px; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
}

/* --- ESTRUTURA PADRÃO DE ÁREAS --- */
.area-section, .sobre { padding: 100px 0; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.area-text h2 { font-size: 2.8rem; color: var(--verde); margin-bottom: 20px; }
.area-text p { margin-bottom: 15px; font-size: 1.05rem; }
.subtitle { color: var(--dourado); font-weight: 600; margin-bottom: 25px !important; font-size: 1.2rem !important; }

.btn-gold { border: 2px solid var(--dourado); color: var(--dourado); padding: 12px 30px; text-decoration: none; border-radius: 5px; font-weight: 600; transition: 0.3s; display: inline-block; margin-top: 15px; }
.btn-gold:hover { background: var(--dourado); color: var(--branco); }

/* Caixa de Destaque CTA (Sobre mim) */
.cta-box { background: rgba(212, 175, 55, 0.1); border-left: 4px solid var(--dourado); padding: 25px; margin-top: 30px; border-radius: 0 8px 8px 0; }
.cta-texto { color: var(--verde); font-size: 1.1rem !important; margin-bottom: 15px !important; line-height: 1.4; }

@media (max-width: 768px) {
    .area-section, .sobre { padding: 60px 0; }
    .area-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .area-text h2 { font-size: 2.2rem; }
    .inverte-mobile .area-text { order: 2; }
    .inverte-mobile .area-img { order: 1; }
}

/* --- DEPOIMENTOS (CARROSSEL) --- */
.depoimentos { padding: 80px 0; overflow: hidden; }
.text-gold { color: var(--dourado); }
.subtitle-branco { color: var(--branco); margin-bottom: 50px; font-size: 1.1rem; opacity: 0.9; }

.carousel-wrapper { width: 100%; max-width: 1160px; margin: 0 auto; overflow: hidden; position: relative; padding: 10px 0; }
.carousel-wrapper::before, .carousel-wrapper::after { content: ''; position: absolute; top: 0; width: 80px; height: 100%; z-index: 2; }
.carousel-wrapper::before { left: 0; background: linear-gradient(to right, var(--verde) 0%, transparent 100%); }
.carousel-wrapper::after { right: 0; background: linear-gradient(to left, var(--verde) 0%, transparent 100%); }

.carousel-track { display: flex; width: max-content; animation: scroll-carrossel 30s linear infinite; }
.carousel-track:hover { animation-play-state: paused; }

.slide { width: 290px; padding: 0 15px; flex-shrink: 0; }
.slide img { width: 100%; height: auto; border-radius: 10px; border: 2px solid var(--dourado); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

@keyframes scroll-carrossel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-290px * 5)); } 
}

@media (max-width: 768px) {
    .carousel-wrapper::before, .carousel-wrapper::after { width: 30px; }
    .slide { width: calc(100vw - 40px); }
    @keyframes scroll-carrossel {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc((100vw - 40px) * -5)); }
    }
}

/* --- PARCEIROS --- */
.parceiros-section { padding: 60px 0; }
.parceiros-box { background-color: rgba(44, 76, 59, 0.05); padding: 40px; border-radius: 8px; text-align: center; border: 1px dashed var(--verde); }

/* --- FOOTER ATUALIZADO --- */
footer { background: #1a241e; padding: 60px 0 20px; color: #ccc; text-align: center; }
.footer-grid { display: flex; justify-content: space-around; align-items: center; margin-bottom: 40px; }
.footer-social h4 { color: var(--dourado); margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.social-icons a { color: var(--branco); font-size: 1.8rem; margin: 0 15px; transition: 0.3s; }
.social-icons a:hover { color: var(--dourado); }
.copyright { font-size: 0.8rem; opacity: 0.5; margin-top: 20px; }

@media (max-width: 768px) {
    .footer-grid { flex-direction: column; gap: 30px; }
}

/* --- NOTIFICAÇÃO --- */
.floating-notif { position: fixed; bottom: -200px; right: 30px; background-color: #ffffff; border: 2px solid #25d366; border-radius: 12px; padding: 25px; width: 320px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 1002; display: flex; flex-direction: column; align-items: center; text-align: center; transition: 0.6s ease-out; opacity: 0; }
.floating-notif.show { bottom: 30px; opacity: 1; }
@media (min-width: 901px) { .floating-notif.show { bottom: 30px; right: 120px; } }
@media (max-width: 900px) { .floating-notif { width: calc(100% - 60px); right: 30px; } }

.badge-notif { position: absolute; top: -15px; left: -15px; background-color: #ff3b30; color: #ffffff; width: 30px; height: 30px; border-radius: 50%; font-weight: 700; display: flex; justify-content: center; align-items: center; font-size: 1rem; }
.ico-notif { font-size: 3rem; color: #25d366; margin-bottom: 15px; }
.btn-notif { background-color: #25d366; color: #ffffff; padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 700; width: 100%; transition: 0.3s; }
#close-notif { position: absolute; top: 10px; right: 15px; background: none; border: none; color: #aaa; font-size: 1.5rem; cursor: pointer; }

/* --- WHATS E UP --- */
.whats-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; z-index: 1000; text-decoration: none; }
.pulse { animation: pulse-animation 2s infinite; }
@keyframes pulse-animation { 0% { box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.7); } 100% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } }
.btn-up { position: fixed; bottom: 110px; right: 35px; background: var(--dourado); color: var(--verde); border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: none; z-index: 999; }