body { font-family: 'Inter', sans-serif; }
.hero-gradient { background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%); }
.text-primary { color: #2563EB; }
.bg-primary { background-color: #2563EB; }
.text-accent { color: #F97316; } 
.bg-accent { background-color: #F97316; }

.fade-up { animation: fadeUp 0.8s ease-out; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 20px;
}

/* Classe para impedir que o link visitado fique azul */
.link-alua, .link-alua:visited, .link-alua:active {
    color: #9ca3af; /* text-gray-400 do Tailwind */
    text-decoration: none;
    transition: color 0.2s;
}
.link-alua:hover {
    color: #ffffff;
}