/* Estilos personalizados além do Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

section:first-of-type {
    opacity: 1 !important;
}

/* Efeito de hover nos cards */
.bg-zinc-900:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.1);
}

/* Animação para botões */
button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* Efeito de brilho para elementos dourados */
.text-gold {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .bg-zinc-900:hover {
        transform: none;
    }

    button:hover {
        transform: none;
    }
}

/* Melhorias para dispositivos móveis */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}