@charset "utf-8";
/* CSS Document */
        /* Reset de estilo básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #f4f4f4;
            color: #333;
			text-align: center;
        }

        header {
            padding: 1rem;
            text-align: center;
        }

        section {
            padding: 2rem 1rem;
        }

		div{
			padding: 1rem;
		}

        footer {
            text-align: center;
            padding: 1rem;
            position: relative;
            bottom: 0;
        }

        /* Estilos para dispositivos móveis */
        @media (max-width: 768px) {
           
        }
