/* Estilos Globais - Usados em todas as páginas */

main {
    padding: 40px;
    min-height: 80vh;
}

section {
    margin-bottom: 60px;
}

h1 {
    color: #00e0ff;
    margin-bottom: 30px;
    font-size: 36px;
    text-align: center;
}

.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 480px) {
    main {
        padding: 20px;
    }
}
