/*--------------------------------------------------------------
# Estilos Gerais e Fundo
--------------------------------------------------------------*/
body {
    background: linear-gradient(135deg, #f1f1f1 0%, #dedede 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    background-image: url(../img/fundo-site.png);
    background-size: cover;
    background-repeat: no-repeat;
}
/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.logo-container .custom-logo {
    max-height: 120px; /* Ajuste conforme seu logo */
    width: auto;
}

/*--------------------------------------------------------------
# Botões de Link
--------------------------------------------------------------*/
.link-button {
    background-color: rgb(70 81 51);
    color: #fff;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.link-button i {
    margin-right: 12px;
    font-size: 1.2rem;
    width: 20px; /* Alinha os textos mesmo que alguns links não tenham ícone */
    text-align: center;
}

/* Efeito Hover - A mágica acontece aqui! */
.link-button:hover {
    background-color: #2c3320;
    color: #fff;
    transform: translateY(-5px) scale(1.02); /* Efeito de elevação sutil */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: #fff;
}    
.text-green-50{
    color:#2c3320
}