:root {
    --primary: #0f3d2e;
    --accent: #1f5c45;
    --gold: #c5a059;
    --bg-light: #f4f6f5;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.padding-vertical {
    padding: 100px 0;
}

.relative {
    position: relative;
}

.center {
    text-align: center;
}

/* Tipografia */
h1,
h2,
.thin-title {
    font-weight: 200 !important;
    line-height: 1.2;
}

h1 strong,
h2 strong {
    font-weight: 600;
}

p {
    font-weight: 300;
}

.label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 290px;
}

#menu {
    display: flex;
    align-items: center;
}

#menu a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

#menu a:hover,
#menu a.active {
    color: var(--gold);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
}



/* Footer Global */
.footer {
    padding: 80px 0 40px;
    background: #0a251c;
    color: white;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.logo-f {
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-brand {
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    margin-left: 20px;
    opacity: 0.6;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: start;
    margin-left: -10px;


}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list i {
    color: var(--accent-color, #c5a059);
    /* O dourado da sua logo */
    margin-top: 4px;
    font-size: 1rem;
}

.footer-contact-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list a:hover {
    color: #ffffff;
}


/* Botão WhatsApp Fixo */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* Cor oficial do WhatsApp */
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    /* Aumenta levemente ao passar o mouse */
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Tooltip (Legenda que aparece ao lado) */
.tooltip-whatsapp {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

/* Seta do Tooltip */
.tooltip-whatsapp::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-fixed:hover .tooltip-whatsapp {
    opacity: 1;
    visibility: visible;
}

/* Ajuste para Mobile (Para não cobrir conteúdos importantes) */
@media (max-width: 768px) {

    .logo img {
        width: 210px;
    }

    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .tooltip-whatsapp {
        display: none;
        /* Esconde a legenda no celular para não poluir */
    }
}

/* Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    #menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        border-top: 1px solid #eee;
    }

    #menu.active {
        display: flex;
    }

    #menu a {
        margin: 15px 0;
        margin-left: 0;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact-list {
        align-items: center;
    }
}


/* --- BIBLIOTECA DE ANIMAÇÕES SUTIS --- */


.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Delay para itens em grid (um surge depois do outro) */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Animação suave para o carregamento da Hero (sem JS) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-animate {
    animation: fadeInUp 1s ease-out forwards;
}