/* Reset e Variáveis */
:root {
    --primary-color: #e65644;
    --secondary-color: #146036;
    --text-color: #8e91aa;
    --white: #ffffff;
}

/* Estilos da Imagem */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #548a6d 100%);
}

/* Media Queries Consolidados */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        background: var(--secondary-color);
        width: 100%;
        transition: 0.3s;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
}
