/* MENU */
.navbar {
    transition: all 0.3s ease;
    /*padding: 1rem 0;*/
}

.navbar-white {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-green {
    background-color: #2d4023 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-white .navbar-brand,
.navbar-white .navbar-nav .nav-link {
    color: #2d4023 !important;
}

.navbar-green .navbar-brand,
.navbar-green .navbar-nav .nav-link {
    color: white !important;
}

.navbar-toggler {
    border: none;
}

.navbar-white .navbar-toggler-icon {
    filter: invert(1);
}

/* FOOTER */
.footer {
    background-color: #2d4023; /* Verde do menu */
    color: #ffffff;
    /*padding: 60px 0 30px 0;*/
    padding: 60px 0 10px 0;
    /*margin-top: 80px;*/
    border-top: 1px solid #49B170;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    max-height: 100px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8d4a8; /* Verde claro para contraste */
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: translateX(5px);
}

/* Redes Sociais */
.social-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    grid-template-rows: repeat(2, 1fr);    /* 2 linhas */
    gap: 15px;
    justify-items: center;
    align-items: center;
    max-width: 200px; /* Limita a largura total */
    margin: 0 auto;   /* Centraliza o grid */
    padding: 10px 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0; /* Remove margem para o grid funcionar melhor */
}

.social-icon:hover {
    background-color: #ffffff;
    color: #2d4023;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Cores específicas para cada rede social no hover */
.social-icon.facebook:hover { background-color: #3b5998; color: white; }
.social-icon.twitter:hover { background-color: #1da1f2; color: white; }
.social-icon.instagram:hover { background-color: #e4405f; color: white; }
.social-icon.youtube:hover { background-color: #ff0000; color: white; }
.social-icon.linkedin:hover { background-color: #0077b5; color: white; }
.social-icon.tiktok:hover { background-color: #000000; color: white; }

/* Rodapé inferior */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #b8d4a8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.copyright {
    color: #94a387; /* Verde mais escuro para copyright */
    font-size: 0.85rem;
    margin: 0;
}

.nav-item {
    font-weight: 700;
    font-size: 13px;
}


/* Container para ilustrações */
.decorative-illustrations {
    position: absolute;
    top: 0;
    left: 0;
    width: 99vw;
    height: 99vh;
    pointer-events: none; /* Não interfere com cliques */

}

/* Ilustrações individuais */
.illustration {
    position: absolute;
    /*opacity: 0.6; !* Transparência para não competir com o conteúdo *!*/
    /*transition: all 0.3s ease;*/
}

/* Posicionamento das ilustrações */

.illustration-1 {
    top: 165px;
    left: 0;
    transform: rotate(-3deg);
}

.illustration-2 {
    top: 870px;
    right: 0;
}

.illustration-3 {
    top: 1900px;
    right: 1px;
    z-index: -1;
}

@media (max-width: 1500px) {
    .illustration {
        opacity: 0.6;
    }
}
@media (max-width: 991px) {
    .illustration {
        display: none;
    }
}