.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #FFD700; /* Amarelo puro sem efeito neon */
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #FFFFFF; /* Grifo branco */
    text-decoration-thickness: 2px;
}

.logo-text p {
    font-size: 0.8rem;
    margin: 0;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .logo {
        flex-direction: row;
        align-items: center;
    }
    
    .logo img {
        height: 50px;
        margin-right: 10px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
}
