.titulo-zoom-in {
    animation: zoomInEffect 1s ease-out;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

@keyframes zoomInEffect {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

 .section h2 { margin-bottom: 16px; }  .section h3 { margin-top: 32px; margin-bottom: 12px; }  .section p { margin: 0 0 16px 0; line-height: 1.6; }  .section ul { margin: 8px 0 20px 0; padding-left: 20px; }  .section ul li { margin-bottom: 8px; line-height: 1.6; }  .section table { margin-bottom: 24px; border-collapse: collapse; width: 100%; }  .section table th, .section table td { padding: 4px 8px; }