/* Configurações Globais */
html {
    scroll-behavior: smooth;
}

/* Utilitários de Animação */
.animation-delay-2000 {
    animation-delay: 2s;
}

/* Estilos para conteúdo rico (HTML injetado nas descrições) */
.prose h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-size: 1.5rem;
}
.prose p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: #475569;
}
.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #475569;
}
.prose strong {
    color: #1e293b;
    font-weight: 700;
}

/* Scrollbar personalizada para listas longas */
.scrollbar-thin::-webkit-scrollbar {
    width: 6px;
}
.scrollbar-thin::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}