* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

body {
    background-color: #1a1a1a;
    color: #f0f0f0;
}
a {
    color: #ffffff;
}
/* Navbar */
.navbar {
    background-color: #262423;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 100;
    border-bottom: 3px solid #2c2c2c;
}

.nav-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: space-around;
}


/* Estilos base para todos os botões */
.nav-btn {
    background-color: #262423;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
       transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0) scale(1); 
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
}

/* Efeitos comuns de hover */
.nav-btn:hover {
    transform: translateY(-1px) scale(1.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Seção da imagem hero */
.hero-image {
    height: 500px;
    background-color: #262423;
    background-image: url(imagem.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Placeholder caso a imagem não carregue */
.hero-image::before {
    content: 'Imagem em Destaque';
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
    font-weight: 500;
    display: none; /* Só aparecerá se a imagem não carregar */
}

.hero-image:empty::before {
    display: block;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    
    .nav-btn {
        width: 80%;
        margin: 5px 0;
        padding: 12px 20px;
    }
    
    .navbar {
        height: auto;
        padding: 10px 0;
    }
    
    .hero-image {
        height: 50vh; /* Ajusta a altura em dispositivos móveis */
    }


.logo {
    color: #7b7b7b;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
    height: 50px;
}}
/* Footer */
.footer {
    background-color: #111111;
    color: #6cc349;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 4px solid #1d1d1d;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-links {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.7rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #9400D3;
}

.footer-info {
    text-align: center;
    font-size: 0.6rem;
    margin-bottom: 10px;
}

.footer-info p {
    margin-bottom: 5px;
    color: #ffffff;
}

.disclaimer {
    color: #eaeaea;
    font-size: 0.5rem;
}
.contents {
    min-height: 400px;
}