/* Logo Styling - Versão Corrigida */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
    color: inherit;
}

.logo-text-full {
    background: linear-gradient(90deg, #007bff, #be0505, #ff2600);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

/* Efeito Hover para a logo completa */
.logo:hover .logo-text-full {
    background: linear-gradient(90deg, #0056b3, #660909, #b6331c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Para o footer, talvez um tamanho um pouco menor */
.footer .logo {
    font-size: 1.5em;
    justify-content: center;
    margin-bottom: 10px;
}

.footer .logo-text-full {
    font-size: 1em;
}