:root {
    --forest-green: #1B4332;
    --soft-earth: #D4A373;
    --gold: #FFD700;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark: #081C15;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
header {
    background-color: var(--white);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--forest-green);
}

.logo span {
    color: var(--soft-earth);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--forest-green);
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
}

.nav-links li a:hover {
    color: var(--gold);
    transform: scale(1.1); /* Sutil zoom para o hover */
}

.nav-links li a:focus {
    outline: 2px solid var(--gold); /* Melhor foco para acessibilidade */
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(2, 12, 23, 0.6), rgba(2, 12, 23, 0.6)), url('path-to-your-image.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .cta-button {
    background-color: var(--gold);
    color: var(--dark);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.hero .cta-button:hover {
    background-color: var(--soft-earth);
    transform: translateY(-2px); /* Efeito sutil de movimento */
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Esconde o menu em telas menores */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Footer (se necessário) */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

footer p {
    font-size: 1rem;
}
