/*
Theme Name: RegiMente
Theme URI: https://example.com/regimente
Author: Antigravity
Author URI: https://example.com
Description: Tema focado em disciplina e performance para o RegiMente.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: regimente
*/

/* Custom Styles for RegiMente */

body {
    scroll-behavior: smooth;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden-section {
    display: none;
}